basedmypy icon indicating copy to clipboard operation
basedmypy copied to clipboard

based callable

Open KotlinIsland opened this issue 1 year ago • 28 comments

  • resolves #614
  • resolves #80
  • resolves #620
  • resolves #624
from __future__ import annotations
from typing import *
from types import FunctionType

some_callable: Callable[['C'], int]

class C:
    c1: Callable[['C'], int]  # callable attribute
    c2: FunctionType[['C'], int]  # callable attribute
    c3: Callable[['C'], int] = lambda x: 1  # error, too sus
    c4: FunctionType[['C'], int] = lambda x: 1  # error, too sus
    
    m1 = lambda x: 1  # method, because of assignment
    def m2(self) -> int: return 1
    m3 = some_callable  # method, because of assignment
    
    a1: ClassVar[Callable[['C'], int]]
    a2: ClassVar[FunctionType[['C'], int]]
    
    def __init__(self) -> None:
        self.c5: Callable[[], int]  # callable attribute
        self.c6 = lambda x: 1  # callable attribute
        self.m1 = lambda x: 1  # error can't assign to a method
   
C.c1 = lambda x: 1  # error, too sus
# same through c6

C.m1 = lambda x: 1
C.m2 = lambda x: 1  # error, can't assign to a method

C.a1 = lambda x: 1  # error, too sus
C.a1 = some_callable  # error, a little sus
C.a2 = lambda x: 1

c: C
reveal_type(c.c1)  # (C) -> int
reveal_type(c.c2)  # (C) -> int
reveal_type(c.c3)  # (C) -> int
reveal_type(c.c4)  # (C) -> int
reveal_type(c.c5)  # (C) -> int
reveal_type(c.c6)  # (C) -> int

reveal_type(c.m1)  # () -> int
reveal_type(c.m2)  # () -> int

reveal_type(c.a1)  # (C) -> int
reveal_type(c.a2)  # () -> int
def dec(f: Callable[..., ...]) -> Callable[..., ...]: ...

class A:
    @dec  # error: FunctionType turned into Callable, use "basedtyping.function_type" or ignore if this is correct
    def f(): ...
    @function_type
    @dec
    def f(): ...

KotlinIsland avatar Jan 13 '24 12:01 KotlinIsland

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

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

isort (https://github.com/pycqa/isort)
- isort/exceptions.py:163:5: error: Type of decorated function contains type "Any" ("(name: str, value: Any, source: str) -> str")  [no-any-decorated]
+ isort/exceptions.py:163:5: error: Type of decorated function contains type "Any" ("def (name: str, value: Any, source: str) -> str")  [no-any-decorated]
- isort/sorting.py:116:24: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:116:24: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
- isort/sorting.py:122:32: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:122:32: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
+ isort/wrap_modes.py:39:17: error: "(...) -> str" has no attribute "__name__"  [attr-defined]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/settings.py:140: error: Type of decorated function contains type "Any" ("(*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]
+ isort/settings.py:140: error: Type of decorated function contains type "Any" ("def (*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]
- isort/settings.py:710:5: error: Type of decorated function contains type "Any" ("(self: Config) -> (...) -> list[str]")  [no-any-decorated]
+ isort/settings.py:710:5: error: Type of decorated function contains type "Any" ("def (self: Config) -> (...) -> list[str]")  [no-any-decorated]
- isort/settings.py:730:16: error: Expression type contains "Any" (has type "(to_sort: Iterable[str], key: (str) -> Any | None=..., reverse: bool=...) -> list[str] | overloaded function | (...) -> list[str] | Any")  [no-any-expr]
+ isort/settings.py:730:16: error: Expression type contains "Any" (has type "(...) -> list[str] | Any | None & def (to_sort: Iterable[str], key: (str) -> Any | None=..., reverse: bool=...) -> list[str] | None & overloaded function")  [no-any-expr]
- isort/settings.py:752:12: error: Expression type contains "Any" (has type "(str) -> Any & (value: str) -> WrapModes | type[Any] | type[str]")  [no-any-expr]
+ isort/settings.py:752:12: error: Expression type contains "Any" (has type "(str) -> Any & def (value: str) -> WrapModes | type[Any] | type[str]")  [no-any-expr]
- isort/literal.py:84:12: error: Expression type contains "Any" (has type "(function: (Any, ISortPrettyPrinter) -> str) -> (Any, ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:84:12: error: Expression type contains "Any" (has type "def (function: (Any, ISortPrettyPrinter) -> str) -> (Any, ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:87:2: error: Expression type contains "Any" (has type "(value: dict[Any, Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:87:2: error: Expression type contains "Any" (has type "def (value: dict[Any, Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:92:2: error: Expression type contains "Any" (has type "(value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:92:2: error: Expression type contains "Any" (has type "def (value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:97:2: error: Expression type contains "Any" (has type "(value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:97:2: error: Expression type contains "Any" (has type "def (value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:102:2: error: Expression type contains "Any" (has type "(value: set[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:102:2: error: Expression type contains "Any" (has type "def (value: set[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:107:2: error: Expression type contains "Any" (has type "(value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:107:2: error: Expression type contains "Any" (has type "def (value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:112:2: error: Expression type contains "Any" (has type "(value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:112:2: error: Expression type contains "Any" (has type "def (value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/deprecated/finders.py:227:32: error: Call to incomplete function "getfile" in typed context  [no-untyped-call]
+ isort/deprecated/finders.py:227:32: note: Type is "def (object: types.ModuleType | type[Any] | types.MethodType | def (*Untyped, **Untyped) -> Untyped | types.TracebackType | types.FrameType | types.CodeType | (*Any, **Any) -> Any) -> str"
- isort/main.py:1125:85: error: Expression type contains "Any" (has type "(item: Any) -> str | list[Any]")  [no-any-expr]
+ isort/main.py:1125:85: error: Expression type contains "Any" (has type "def (item: Any) -> str | list[Any]")  [no-any-expr]
- isort/main.py:1199:21: error: Expression type contains "Any" (has type "(file_name: str, config: Config, check: bool=..., ask_to_apply: bool=..., write_to_stdout: bool=..., **kwargs: Any) -> SortAttempt | None")  [no-any-expr]
+ isort/main.py:1199:21: error: Expression type contains "Any" (has type "def (file_name: str, config: Config, check: bool=..., ask_to_apply: bool=..., write_to_stdout: bool=..., **kwargs: Any) -> SortAttempt | None")  [no-any-expr]

itsdangerous (https://github.com/pallets/itsdangerous)
- src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("(payload: str | bytes) -> Any")  [no-any-decorated]
+ src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("def (payload: str | bytes) -> Any")  [no-any-decorated]
- src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("(obj: Any, **kwargs: Any) -> str")  [no-any-decorated]
+ src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("def (obj: Any, **kwargs: Any) -> str")  [no-any-decorated]

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:87:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:87:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:296:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:296:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:407:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:407:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]```</details>

... (truncated 29503 lines) ...

github-actions[bot] avatar Jan 13 '24 12:01 github-actions[bot]

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

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

isort (https://github.com/pycqa/isort)
- isort/exceptions.py:163:5: error: Type of decorated function contains type "Any" ("(name: str, value: Any, source: str) -> str")  [no-any-decorated]
+ isort/exceptions.py:163:5: error: Type of decorated function contains type "Any" ("def (name: str, value: Any, source: str) -> str")  [no-any-decorated]
- isort/sorting.py:116:24: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:116:24: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
- isort/sorting.py:122:32: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:122:32: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
+ isort/wrap_modes.py:39:17: error: "(...) -> str" has no attribute "__name__"  [attr-defined]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/settings.py:140: error: Type of decorated function contains type "Any" ("(*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]
+ isort/settings.py:140: error: Type of decorated function contains type "Any" ("def (*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]
- isort/settings.py:710:5: error: Type of decorated function contains type "Any" ("(self: Config) -> (...) -> list[str]")  [no-any-decorated]
+ isort/settings.py:710:5: error: Type of decorated function contains type "Any" ("def (self: Config) -> (...) -> list[str]")  [no-any-decorated]
- isort/settings.py:730:16: error: Expression type contains "Any" (has type "(to_sort: Iterable[str], key: (str) -> Any | None=..., reverse: bool=...) -> list[str] | overloaded function | (...) -> list[str] | Any")  [no-any-expr]
+ isort/settings.py:730:16: error: Expression type contains "Any" (has type "(...) -> list[str] | Any | None & def (to_sort: Iterable[str], key: (str) -> Any | None=..., reverse: bool=...) -> list[str] | None & overloaded function")  [no-any-expr]
- isort/settings.py:752:12: error: Expression type contains "Any" (has type "(str) -> Any & (value: str) -> WrapModes | type[Any] | type[str]")  [no-any-expr]
+ isort/settings.py:752:12: error: Expression type contains "Any" (has type "(str) -> Any & def (value: str) -> WrapModes | type[Any] | type[str]")  [no-any-expr]
- isort/literal.py:84:12: error: Expression type contains "Any" (has type "(function: (Any, ISortPrettyPrinter) -> str) -> (Any, ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:84:12: error: Expression type contains "Any" (has type "def (function: (Any, ISortPrettyPrinter) -> str) -> (Any, ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:87:2: error: Expression type contains "Any" (has type "(value: dict[Any, Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:87:2: error: Expression type contains "Any" (has type "def (value: dict[Any, Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:92:2: error: Expression type contains "Any" (has type "(value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:92:2: error: Expression type contains "Any" (has type "def (value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:97:2: error: Expression type contains "Any" (has type "(value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:97:2: error: Expression type contains "Any" (has type "def (value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:102:2: error: Expression type contains "Any" (has type "(value: set[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:102:2: error: Expression type contains "Any" (has type "def (value: set[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:107:2: error: Expression type contains "Any" (has type "(value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:107:2: error: Expression type contains "Any" (has type "def (value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:112:2: error: Expression type contains "Any" (has type "(value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:112:2: error: Expression type contains "Any" (has type "def (value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/deprecated/finders.py:227:32: error: Call to incomplete function "getfile" in typed context  [no-untyped-call]
+ isort/deprecated/finders.py:227:32: note: Type is "def (object: types.ModuleType | type[Any] | types.MethodType | def (*Untyped, **Untyped) -> Untyped | types.TracebackType | types.FrameType | types.CodeType | (*Any, **Any) -> Any) -> str"
- isort/main.py:1125:85: error: Expression type contains "Any" (has type "(item: Any) -> str | list[Any]")  [no-any-expr]
+ isort/main.py:1125:85: error: Expression type contains "Any" (has type "def (item: Any) -> str | list[Any]")  [no-any-expr]
- isort/main.py:1199:21: error: Expression type contains "Any" (has type "(file_name: str, config: Config, check: bool=..., ask_to_apply: bool=..., write_to_stdout: bool=..., **kwargs: Any) -> SortAttempt | None")  [no-any-expr]
+ isort/main.py:1199:21: error: Expression type contains "Any" (has type "def (file_name: str, config: Config, check: bool=..., ask_to_apply: bool=..., write_to_stdout: bool=..., **kwargs: Any) -> SortAttempt | None")  [no-any-expr]

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:87:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:87:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:296:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:296:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:407:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:407:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:287:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: BinaryIO) -> ShaFile")  [no-any-decorated]
+ dulwich/objects.py:287:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: BinaryIO) -> ShaFile")  [no-any-decorated]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]```</details>

... (truncated 29498 lines) ...

github-actions[bot] avatar Jan 16 '24 08:01 github-actions[bot]

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

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(self: parso.normalizer.Normalizer, node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: error: Missing positional argument "node" in call to "visit_node" of "Normalizer"  [call-arg]
+ parso/normalizer.py:46:18: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(self: parso.python.errors.ErrorFinder, node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: error: Missing positional argument "node" in call to "visit_node" of "ErrorFinder"  [call-arg]
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(self: parso.python.errors._Context, node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: error: Missing positional argument "node" in call to "add_block" of "_Context"  [call-arg]
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:177:14: error: Missing positional argument "node" in call to "visit_node" of "ErrorFinder"  [call-arg]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(self: parso.python.pep8.PEP8Normalizer, node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: error: Missing positional argument "node" in call to "_visit_node" of "PEP8Normalizer"  [call-arg]
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: error: All overload variants require at least one argument  [call-overload]
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note: Possible overload variants:
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, format: str | None = ..., passphrase: str | None = ..., pkcs: int | None = ..., protection: str | None = ..., randfunc: (int) -> bytes | None = ...) -> bytes
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, *, format: str | None = ..., passphrase: str, pkcs: 8, protection: str, randfunc: (int) -> bytes | None = ..., prot_params: ProtParams) -> bytes
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]

... (truncated 882 lines) ...

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:156:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:158:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:160:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:162:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:168:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:169:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:215:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:228:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:228:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:233:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:245:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:293:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:346:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:350:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:489:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:489:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:
+ Tools/cases_generator/uop_metadata_generator.py: note: In function "generate_uop_metadata":
+ Tools/cases_generator/uop_metadata_generator.py:48:10: error: Missing positional argument "name" in call to "header_guard" of "CWriter"  [call-arg]
+ Tools/cases_generator/uop_metadata_generator.py:48:27: error: Argument 1 to "header_guard" of "CWriter" has incompatible type "str"; expected "CWriter"  [arg-type]
+ Tools/cases_generator/uop_metadata_generator.py: note: At top level:
+ Tools/cases_generator/uop_id_generator.py: note: In function "generate_uop_ids":
+ Tools/cases_generator/uop_id_generator.py:32:10: error: Missing positional argument "name" in call to "header_guard" of "CWriter"  [call-arg]
+ Tools/cases_generator/uop_id_generator.py:32:27: error: Argument 1 to "header_guard" of "CWriter" has incompatible type "str"; expected "CWriter"  [arg-type]
+ Tools/cases_generator/uop_id_generator.py: note: At top level:
+ Tools/cases_generator/opcode_metadata_generator.py: note: In function "generate_opcode_metadata":
+ Tools/cases_generator/opcode_metadata_generator.py:340:10: error: Missing positional argument "name" in call to "header_guard" of "CWriter"  [call-arg]
+ Tools/cases_generator/opcode_metadata_generator.py:340:27: error: Argument 1 to "header_guard" of "CWriter" has incompatible type "str"; expected "CWriter"  [arg-type]
+ Tools/cases_generator/opcode_metadata_generator.py: note: At top level:
+ Tools/cases_generator/opcode_id_generator.py: note: In function "generate_opcode_header":
+ Tools/cases_generator/opcode_id_generator.py:32:10: error: Missing positional argument "name" in call to "header_guard" of "CWriter"  [call-arg]
+ Tools/cases_generator/opcode_id_generator.py:32:27: error: Argument 1 to "header_guard" of "CWriter" has incompatible type "str"; expected "CWriter"  [arg-type]
+ Tools/cases_generator/opcode_id_generator.py: note: At top level:

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:87:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:87:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:296:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:296:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:341: error: "type: ignore" comment without error code (consider "type: ignore[assignment]" instead)  [ignore-without-code]
+ dulwich/lru_cache.py:341: error: "type: ignore" comment without error code (consider "type: ignore[assignment, misc]" instead)  [ignore-without-code]
+ dulwich/lru_cache.py: note: In member "__init__" of class "LRUSizeCache":
+ dulwich/lru_cache.py:343:34: error: Value could be a "FunctionType", independently verify it for safety (🚀)  [misc]
+ dulwich/lru_cache.py:343:34: note: Or make it "FunctionType", if that's what you wanted
- dulwich/lru_cache.py:407:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:407:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:287:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: BinaryIO) -> ShaFile")  [no-any-decorated]
+ dulwich/objects.py:287:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: BinaryIO) -> ShaFile")  [no-any-decorated]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:769:15: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:782:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:782:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:783:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:783:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:784:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:784:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:794:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:794:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "(self: Tag, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "def (self: Tag, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "(entry: Untyped) -> bytes", variable has type "(entry: Untyped) -> None")  [assignment]
+ dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "def (entry: Untyped) -> bytes", variable has type "def (entry: Untyped) -> None")  [assignment]
- dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "(entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
+ dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "def (entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
- dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("(cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1090:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1090:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1344:13: note: Type is "def (Any (unannotated)) -> None"
+ dulwich/objects.py:1344:13: note: Type is "(Any (unannotated)) -> None"
- dulwich/objects.py:1344:29: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1344:29: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("(cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("def (cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1400:18: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1400:18: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1431:39: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1431:39: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1458:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1458:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1459:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1459:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1460:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1460:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1461:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1461:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1462:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1462:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "(self: Commit, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "def (self: Commit, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "(text: Untyped, strict: bool=...) -> None")  [no-any-expr]
+ dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "def (text: Untyped, strict: bool=...) -> None")  [no-any-expr]
- dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "(entries: Untyped, name_order: bool) -> None")  [no-any-expr]
+ dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "def (entries: Untyped, name_order: bool) -> None")  [no-any-expr]
- dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("(cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("def (cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
- dulwich/config.py:135:25: note: Type is "def (key: Untyped, default: Untyped =) -> None"
+ dulwich/config.py:135:25: note: Type is "(key: Untyped, default: Untyped =) -> None"
- dulwich/config.py:263:24: note: Type is "def (dict_in: Untyped =) -> None"
+ dulwich/config.py:263:24: note: Type is "(dict_in: Untyped =) -> None"
- dulwich/archive.py:57:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:57:17: note: Type is "(Untyped) -> None"
- dulwich/archive.py:62:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:62:17: note: Type is "(Untyped) -> None"
- dulwich/tests/test_mailmap.py:72:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:72:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:73:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:73:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:74:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:74:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:75:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:75:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:76:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:76:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:80:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:80:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:81:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:81:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:87:13: note: Type is "def (identity: Untyped) -> None"
+ dulwich/tests/test_mailmap.py:87:13: note: Type is "(identity: Untyped) -> None"
- dulwich/tests/test_mailmap.py:91:13: note: Type is "def (identity: Untyped) -> None"
+ dulwich/tests/test_mailmap.py:91:13: note: Type is "(identity: Untyped) -> None"
- dulwich/tests/test_mailmap.py:95:13: note: Type is "def (identity: Untyped) -> None"
+ dulwich/tests/test_mailmap.py:95:13: note: Type is "(identity: Untyped) -> None"
- dulwich/tests/test_mailmap.py:98:42: note: Type is "def (identity: Untyped) -> None"
+ dulwich/tests/test_mailmap.py:98:42: note: Type is "(identity: Untyped) -> None"
- dulwich/tests/test_mailmap.py:100:51: note: Type is "def (identity: Untyped) -> None"
+ dulwich/tests/test_mailmap.py:100:51: note: Type is "(identity: Untyped) -> None"
- dulwich/reflog.py:108:9: note: Type is "def ((Untyped, None)) -> None"
+ dulwich/reflog.py:108:9: note: Type is "((Untyped, None)) -> None"
- dulwich/pack.py:473:20: note: Type is "def (Untyped) -> None"```</details>

... (truncated 30901 lines) ...

github-actions[bot] avatar Jan 17 '24 13:01 github-actions[bot]

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

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:156:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:158:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:160:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:162:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:168:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:169:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:215:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:228:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:228:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:233:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:245:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:293:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:346:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:350:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:489:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:489:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: error: All overload variants require at least one argument  [call-overload]
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note: Possible overload variants:
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, format: str | None = ..., passphrase: str | None = ..., pkcs: int | None = ..., protection: str | None = ..., randfunc: (int) -> bytes | None = ...) -> bytes
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, *, format: str | None = ..., passphrase: str, pkcs: 8, protection: str, randfunc: (int) -> bytes | None = ..., prot_params: ProtParams) -> bytes
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]

... (truncated 882 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

boostedblob (https://github.com/hauntsaninja/boostedblob)
- boostedblob/azure_auth.py:139:28: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/azure_auth.py:139:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/globals.py:59:52: error: "(T@TokenManager) -> Awaitable[(Any, float)]" has no attribute "__qualname__"  [attr-defined]
- boostedblob/globals.py:133:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:133:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "(_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "def (_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:146:2: error: Expression type contains "Any" (has type "(**kwargs: Any) -> Iterator[None]")  [no-any-expr]
+ boostedblob/globals.py:146:2: error: Expression type contains "Any" (has type "def (**kwargs: Any) -> Iterator[None]")  [no-any-expr]
- boostedblob/globals.py:147:1: error: Type of decorated function contains type "Any" ("(**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
+ boostedblob/globals.py:147:1: error: Type of decorated function contains type "Any" ("def (**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
- boostedblob/globals.py:186:6: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:186:6: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:187:5: error: Type of decorated function contains type "Any" ("(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
+ boostedblob/globals.py:187:5: error: Type of decorated function contains type "Any" ("def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
- boostedblob/globals.py:191:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:191:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:222:32: error: Expression type contains "Any" (has type "(loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
+ boostedblob/globals.py:222:32: error: Expression type contains "Any" (has type "def (loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
- boostedblob/request.py:24: error: Type of decorated function contains type "Any" ("(*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: Any = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ...) -> None")  [no-any-decorated]
+ boostedblob/request.py:24: error: Type of decorated function contains type "Any" ("def (*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: Any = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ...) -> None")  [no-any-decorated]
- boostedblob/path.py:385:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:385:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:431:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:431:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:442:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:442:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:540:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:540:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:564:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:564:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/share.py:9:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/share.py:9:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:33:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:33:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:95:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:95:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:121:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:121:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "(path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-expr]
+ boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "def (path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-expr]
- boostedblob/read.py:177:1: error: Type of decorated function contains type "Any" ("(path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-decorated]
+ boostedblob/read.py:177:1: error: Type of decorated function contains type "Any" ("def (path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-decorated]
- boostedblob/listing.py:53:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:53:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:137:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:137:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:188:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:188:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:217:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:217:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:271:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:271:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:300:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:300:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/delete.py:26:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/delete.py:26:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/delete.py:144:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/delete.py:144:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:40:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:40:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:116:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:116:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:254:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:254:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/copying.py:42:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/copying.py:42:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/copying.py:148:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/copying.py:148:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/copying.py:393:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/copying.py:393:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/_recover.py:136:27: error: Expression type contains "Any" (has type "(b: dict[str, Any]) -> Any")  [no-any-expr]
+ boostedblob/_recover.py:136:27: error: Expression type contains "Any" (has type "def (b: dict[str, Any]) -> Any")  [no-any-expr]
- boostedblob/_recover.py:170:28: error: Expression type contains "Any" (has type "(b: dict[str, Any]) -> Any")  [no-any-expr]
+ boostedblob/_recover.py:170:28: error: Expression type contains "Any" (has type "def (b: dict[str, Any]) -> Any")  [no-any-expr]
- boostedblob/_recover.py:236:9: error: Expression type contains "Any" (has type "(p_vs: (AzurePath, list[dict[str, Any]])) -> Coroutine[Any, Any, str]")  [no-any-expr]
+ boostedblob/_recover.py:236:9: error: Expression type contains "Any" (has type "def (p_vs: (AzurePath, list[dict[str, Any]])) -> Coroutine[Any, Any, str]")  [no-any-expr]
- boostedblob/cli.py:19:6: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Any")  [no-any-expr]
+ boostedblob/cli.py:19:6: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Any")  [no-any-expr]
- boostedblob/cli.py:20:5: error: Type of decorated function contains type "Any" ("(*args: Any, **kwargs: Any) -> Any")  [no-any-decorated]
+ boostedblob/cli.py:20:5: error: Type of decorated function contains type "Any" ("def (*args: Any, **kwargs: Any) -> Any")  [no-any-decorated]
- boostedblob/cli.py:32:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Any")  [no-any-expr]
+ boostedblob/cli.py:32:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Any")  [no-any-expr]
- boostedblob/cli.py:96:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:96:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:132:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:132:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:158:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:158:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:224:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:224:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:233:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:233:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:262:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:262:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:273:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:273:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:291:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:291:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:310:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:310:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:320:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:320:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:328:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:328:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:349:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:349:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:407:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:407:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]

itsdangerous (https://github.com/pallets/itsdangerous)
- src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("(payload: str | bytes) -> Any")  [no-any-decorated]
+ src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("def (payload: str | bytes) -> Any")  [no-any-decorated]
- src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("(obj: Any, **kwargs: Any) -> str")  [no-any-decorated]
+ src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("def (obj: Any, **kwargs: Any) -> str")  [no-any-decorated]

AutoSplit (https://github.com/Toufool/AutoSplit)
- src/utils.py:166:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> None")  [no-any-expr]
+ src/utils.py:166:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> None")  [no-any-expr]
- src/compare.py:110:20: error: Expression type contains "Any" (has type "(source: Any (from unimported type), capture: Any (from unimported type), mask: Any (from unimported type) | None=...) -> None")  [no-any-expr]
+ src/compare.py:110:20: error: Expression type contains "Any" (has type "def (source: Any (from unimported type), capture: Any (from unimported type), mask: Any (from unimported type) | None=...) -> None")  [no-any-expr]
- src/compare.py:112:20: error: Expression type contains "Any" (has type "(source: Any (from unimported type), capture: Any (from unimported type), mask: Any (from unimported type) | None=...) -> None")  [no-any-expr]
+ src/compare.py:112:20: error: Expression type contains "Any" (has type "def (source: Any (from unimported type), capture: Any (from unimported type), mask: Any (from unimported type) | None=...) -> None")  [no-any-expr]
- src/compare.py:114:20: error: Expression type contains "Any" (has type "(source: Any (from unimported type), capture: Any (from unimported type), mask: Any (from unimported type) | None=...) -> None")  [no-any-expr]
+ src/compare.py:114:20: error: Expression type contains "Any" (has type "def (source: Any (from unimported type), capture: Any (from unimported type), mask: Any (from unimported type) | None=...) -> None")  [no-any-expr]
- src/error_messages.py:34:43: error: Expression type contains "Any" (has type "() -> Untyped")  [no-any-expr]
+ src/error_messages.py:34:43: error: Expression type contains "Any" (has type "def () -> Untyped")  [no-any-expr]
- src/hotkeys.py:176:74: error: Argument "key" to "sorted" has incompatible type "(key: str) -> None"; expected "(str) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
+ src/hotkeys.py:176:74: error: Argument "key" to "sorted" has incompatible type "def (key: str) -> None"; expected "(str) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
- src/hotkeys.py:233:16: error: Expression type contains "Any" (has type "() -> Untyped")  [no-any-expr]
+ src/hotkeys.py:233:16: error: Expression type contains "Any" (has type "def () -> Untyped")  [no-any-expr]
- src/hotkeys.py:259:6: error: Expression type contains "Any" (has type "(func: (...) -> Any) -> None")  [no-any-expr]
+ src/hotkeys.py:259:6: error: Expression type contains "Any" (has type "def (func: (...) -> Any) -> None")  [no-any-expr]
- src/hotkeys.py:259:6: error: Expression type contains "Any" (has type "() -> Untyped")  [no-any-expr]
+ src/hotkeys.py:259:6: error: Expression type contains "Any" (has type "def () -> Untyped")  [no-any-expr]
- src/split_parser.py:238:8: error: Expression type contains "Any" (has type "() -> object | () -> Any (unannotated) | None")  [no-any-expr]
- src/capture_method/WindowsGraphicsCaptureMethod.py:70:5: error: Type of decorated function contains type "Any" ("(self: WindowsGraphicsCaptureMethod) -> Untyped")  [no-any-decorated]
+ src/capture_method/WindowsGraphicsCaptureMethod.py:70:5: error: Type of decorated function contains type "Any" ("def (self: WindowsGraphicsCaptureMethod) -> Untyped")  [no-any-decorated]
- src/capture_method/WindowsGraphicsCaptureMethod.py:85:5: error: Type of decorated function contains type "Any" ("(self: WindowsGraphicsCaptureMethod) -> Any (from unimported type) | None")  [no-any-decorated]```</details>

... (truncated 30094 lines) ...

github-actions[bot] avatar Jan 18 '24 07:01 github-actions[bot]

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

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:154:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:156:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:158:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:160:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:162:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:166:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:168:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:169:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:181:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:215:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:226:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:228:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:228:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:233:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:243:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:245:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:247:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py:261:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:293:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:301:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py:326:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py:332:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:346:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:350:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:358:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py:376:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py:415:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py:450:6: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:489:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:489:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: error: All overload variants require at least one argument  [call-overload]
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note: Possible overload variants:
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, format: str | None = ..., passphrase: str | None = ..., pkcs: int | None = ..., protection: str | None = ..., randfunc: (int) -> bytes | None = ...) -> bytes
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, *, format: str | None = ..., passphrase: str, pkcs: 8, protection: str, randfunc: (int) -> bytes | None = ..., prot_params: ProtParams) -> bytes
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]

... (truncated 882 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

black (https://github.com/psf/black)
- src/blib2to3/pytree.py:567:20: note: Type is "def (node: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:567:20: note: Type is "(node: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:760:17: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:760:17: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:761:41: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:761:41: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:803:16: note: Type is "def (nodes: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:803:16: note: Type is "(nodes: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:807:21: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:807:21: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:836:19: note: Type is "def (nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
+ src/blib2to3/pytree.py:836:19: note: Type is "(nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
- src/blib2to3/pytree.py:846:33: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:846:33: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:853:33: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:853:33: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:915:35: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:915:35: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("(*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
+ src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("def (*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
- src/black/output.py:15:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:15:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:24:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:24:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:33:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:33:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/files.py:114:2: error: Expression type contains "Any" (has type "(path_config: str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:114:2: error: Expression type contains "Any" (has type "def (path_config: str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:115:1: error: Type of decorated function contains type "Any" ("(path_config: str) -> dict[str, Any]")  [no-any-decorated]
+ src/black/files.py:115:1: error: Type of decorated function contains type "Any" ("def (path_config: str) -> dict[str, Any]")  [no-any-decorated]
- src/black/files.py:292:12: note: Type is "def (file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
+ src/black/files.py:292:12: note: Type is "(file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
- src/black/trans.py:311:5: error: Type of decorated function contains type "Any" ("(string: str) -> Any (from unimported type)")  [no-any-decorated]
+ src/black/trans.py:311:5: error: Type of decorated function contains type "Any" ("def (string: str) -> Any (from unimported type)")  [no-any-decorated]
+ src/black/linegen.py: note: At top level:
+ src/black/linegen.py:1167:2: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
+ src/black/linegen.py:1251:2: error: erm, this isn't a FunctionType..., maybe use 'basedtyping.as_functiontype'?????  [misc]
- src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "(src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
+ src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "def (src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
- src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
- src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]

boostedblob (https://github.com/hauntsaninja/boostedblob)
- boostedblob/azure_auth.py:139:28: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/azure_auth.py:139:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/globals.py:59:52: error: "(T@TokenManager) -> Awaitable[(Any, float)]" has no attribute "__qualname__"  [attr-defined]
- boostedblob/globals.py:133:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:133:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "(_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "def (_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:146:2: error: Expression type contains "Any" (has type "(**kwargs: Any) -> Iterator[None]")  [no-any-expr]
+ boostedblob/globals.py:146:2: error: Expression type contains "Any" (has type "def (**kwargs: Any) -> Iterator[None]")  [no-any-expr]
- boostedblob/globals.py:147:1: error: Type of decorated function contains type "Any" ("(**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
+ boostedblob/globals.py:147:1: error: Type of decorated function contains type "Any" ("def (**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
- boostedblob/globals.py:186:6: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:186:6: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:187:5: error: Type of decorated function contains type "Any" ("(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
+ boostedblob/globals.py:187:5: error: Type of decorated function contains type "Any" ("def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
- boostedblob/globals.py:191:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:191:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:222:32: error: Expression type contains "Any" (has type "(loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
+ boostedblob/globals.py:222:32: error: Expression type contains "Any" (has type "def (loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
- boostedblob/request.py:24: error: Type of decorated function contains type "Any" ("(*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: Any = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ...) -> None")  [no-any-decorated]
+ boostedblob/request.py:24: error: Type of decorated function contains type "Any" ("def (*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: Any = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ...) -> None")  [no-any-decorated]
- boostedblob/path.py:385:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:385:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:431:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:431:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:442:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:442:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:540:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:540:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:564:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:564:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/share.py:9:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/share.py:9:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:33:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:33:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:95:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:95:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:121:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:121:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "(path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-expr]
+ boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "def (path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-expr]
- boostedblob/read.py:177:1: error: Type of decorated function contains type "Any" ("(path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-decorated]
+ boostedblob/read.py:177:1: error: Type of decorated function contains type "Any" ("def (path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-decorated]
- boostedblob/listing.py:53:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:53:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:137:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:137:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:188:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:188:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:217:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:217:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:271:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:271:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:300:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:300:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/delete.py:26:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/delete.py:26:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/delete.py:144:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/delete.py:144:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:40:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:40:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:116:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:116:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:254:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:254:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/copying.py:42:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/copying.py:42:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]```</details>

... (truncated 30397 lines) ...

github-actions[bot] avatar Jan 19 '24 07:01 github-actions[bot]

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

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:154:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:154:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:156:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:158:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:160:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:162:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:166:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:168:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:169:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:181:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:215:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:226:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:228:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:228:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:233:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:243:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:245:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:247:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:261:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:293:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:301:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:326:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:332:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:346:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:350:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:358:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:376:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:415:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:450:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:489:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:489:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: error: All overload variants require at least one argument  [call-overload]
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note: Possible overload variants:
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, format: str | None = ..., passphrase: str | None = ..., pkcs: int | None = ..., protection: str | None = ..., randfunc: (int) -> bytes | None = ...) -> bytes
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, *, format: str | None = ..., passphrase: str, pkcs: 8, protection: str, randfunc: (int) -> bytes | None = ..., prot_params: ProtParams) -> bytes
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]

... (truncated 882 lines) ...

itsdangerous (https://github.com/pallets/itsdangerous)
- src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("(payload: str | bytes) -> Any")  [no-any-decorated]
+ src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("def (payload: str | bytes) -> Any")  [no-any-decorated]
- src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("(obj: Any, **kwargs: Any) -> str")  [no-any-decorated]
+ src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("def (obj: Any, **kwargs: Any) -> str")  [no-any-decorated]

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:87:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:87:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:296:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:296:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:407:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:407:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:287:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: BinaryIO) -> ShaFile")  [no-any-decorated]
+ dulwich/objects.py:287:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: BinaryIO) -> ShaFile")  [no-any-decorated]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:769:15: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:782:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:782:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:783:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:783:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:784:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:784:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:794:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:794:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "(self: Tag, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "def (self: Tag, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "(entry: Untyped) -> bytes", variable has type "(entry: Untyped) -> None")  [assignment]
+ dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "def (entry: Untyped) -> bytes", variable has type "def (entry: Untyped) -> None")  [assignment]
- dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "(entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
+ dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "def (entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
- dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("(cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1090:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1090:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1344:13: note: Type is "def (Any (unannotated)) -> None"
+ dulwich/objects.py:1344:13: note: Type is "(Any (unannotated)) -> None"
- dulwich/objects.py:1344:29: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1344:29: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("(cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("def (cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1400:18: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1400:18: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1431:39: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1431:39: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1458:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1458:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1459:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1459:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1460:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1460:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1461:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1461:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1462:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1462:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "(self: Commit, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "def (self: Commit, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "(text: Untyped, strict: bool=...) -> None")  [no-any-expr]
+ dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "def (text: Untyped, strict: bool=...) -> None")  [no-any-expr]
- dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "(entries: Untyped, name_order: bool) -> None")  [no-any-expr]
+ dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "def (entries: Untyped, name_order: bool) -> None")  [no-any-expr]
- dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("(cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("def (cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
- dulwich/config.py:135:25: note: Type is "def (key: Untyped, default: Untyped =) -> None"
+ dulwich/config.py:135:25: note: Type is "(key: Untyped, default: Untyped =) -> None"
- dulwich/config.py:263:24: note: Type is "def (dict_in: Untyped =) -> None"
+ dulwich/config.py:263:24: note: Type is "(dict_in: Untyped =) -> None"
- dulwich/archive.py:57:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:57:17: note: Type is "(Untyped) -> None"```</details>

... (truncated 30018 lines) ...

github-actions[bot] avatar Jan 19 '24 10:01 github-actions[bot]

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

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:154:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:154:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:156:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:158:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:160:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:162:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:166:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:168:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:169:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:181:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:215:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:226:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:228:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:228:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:233:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:243:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:245:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:247:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:261:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:293:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:301:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:326:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:332:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:346:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:350:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:358:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:376:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:415:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:450:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:489:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:489:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

pycryptodome (https://github.com/Legrandin/pycryptodome)
+ lib/Crypto/SelfTest/Protocol/test_KDF.py:789: error: INTERNAL ERROR -- Please try using mypy master on GitHub:
+ https://kotlinisland.github.io/basedmypy/common_issues.html#using-a-development-mypy-build
+ Please report a bug at https://github.com/KotlinIsland/basedmypy/issues
+ version: 2.3.0+dev.06c9f7d027a462c1a3603c1ffa04207eb2409c3f
+ lib/Crypto/SelfTest/Protocol/test_KDF.py:789: : note: use --pdb to drop into pdb
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: error: All overload variants require at least one argument  [call-overload]
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note: Possible overload variants:
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, format: str | None = ..., passphrase: str | None = ..., pkcs: int | None = ..., protection: str | None = ..., randfunc: (int) -> bytes | None = ...) -> bytes
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, *, format: str | None = ..., passphrase: str, pkcs: 8, protection: str, randfunc: (int) -> bytes | None = ..., prot_params: ProtParams) -> bytes
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]

... (truncated 9910 lines) ...

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

itsdangerous (https://github.com/pallets/itsdangerous)
- src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("(payload: str | bytes) -> Any")  [no-any-decorated]
+ src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("def (payload: str | bytes) -> Any")  [no-any-decorated]
- src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("(obj: Any, **kwargs: Any) -> str")  [no-any-decorated]
+ src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("def (obj: Any, **kwargs: Any) -> str")  [no-any-decorated]

isort (https://github.com/pycqa/isort)
- isort/exceptions.py:163:5: error: Type of decorated function contains type "Any" ("(name: str, value: Any, source: str) -> str")  [no-any-decorated]
+ isort/exceptions.py:163:5: error: Type of decorated function contains type "Any" ("def (name: str, value: Any, source: str) -> str")  [no-any-decorated]
- isort/sorting.py:116:24: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:116:24: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
- isort/sorting.py:122:32: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:122:32: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
+ isort/wrap_modes.py:39:17: error: "(...) -> str" has no attribute "__name__"  [attr-defined]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/settings.py:140: error: Type of decorated function contains type "Any" ("(*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]
+ isort/settings.py:140: error: Type of decorated function contains type "Any" ("def (*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]
- isort/settings.py:710:5: error: Type of decorated function contains type "Any" ("(self: Config) -> (...) -> list[str]")  [no-any-decorated]
+ isort/settings.py:710:5: error: Type of decorated function contains type "Any" ("def (self: Config) -> (...) -> list[str]")  [no-any-decorated]
- isort/settings.py:730:16: error: Expression type contains "Any" (has type "(to_sort: Iterable[str], key: (str) -> Any | None=..., reverse: bool=...) -> list[str] | overloaded function | (...) -> list[str] | Any")  [no-any-expr]
+ isort/settings.py:730:16: error: Expression type contains "Any" (has type "(...) -> list[str] | Any | None & def (to_sort: Iterable[str], key: (str) -> Any | None=..., reverse: bool=...) -> list[str] | None & overloaded function")  [no-any-expr]
- isort/settings.py:752:12: error: Expression type contains "Any" (has type "(str) -> Any & (value: str) -> WrapModes | type[Any] | type[str]")  [no-any-expr]
+ isort/settings.py:752:12: error: Expression type contains "Any" (has type "(str) -> Any & def (value: str) -> WrapModes | type[Any] | type[str]")  [no-any-expr]
- isort/literal.py:84:12: error: Expression type contains "Any" (has type "(function: (Any, ISortPrettyPrinter) -> str) -> (Any, ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:84:12: error: Expression type contains "Any" (has type "def (function: (Any, ISortPrettyPrinter) -> str) -> (Any, ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:87:2: error: Expression type contains "Any" (has type "(value: dict[Any, Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:87:2: error: Expression type contains "Any" (has type "def (value: dict[Any, Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:92:2: error: Expression type contains "Any" (has type "(value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]```</details>

... (truncated 52590 lines) ...

github-actions[bot] avatar Jan 23 '24 12:01 github-actions[bot]

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

CPython (cases_generator) (https://github.com/python/cpython)
+ Traceback (most recent call last):
+   File "/tmp/mypy_primer/new_mypy/venv/bin/mypy", line 8, in <module>
+     sys.exit(console_entry())
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/__main__.py", line 15, in console_entry
+     main()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 103, in main
+     res, messages, blockers = run_build(sources, options, fscache, t0, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 210, in run_build
+     res = build.build(sources, options, None, flush_errors, fscache, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 196, in build
+     result = _build(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 273, in _build
+     graph = dispatch(sources, manager, stdout)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3083, in dispatch
+     process_graph(graph, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3483, in process_graph
+     process_stale_scc(graph, scc, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3578, in process_stale_scc
+     mypy.semanal_main.semantic_analysis_for_scc(graph, scc, manager.errors)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_main.py", line 97, in semantic_analysis_for_scc
+     apply_semantic_analyzer_patches(patches)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 7053, in apply_semantic_analyzer_patches
+     patch_func()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 2400, in <lambda>
+     self.schedule_patch(PRIORITY_FALLBACKS, lambda: calculate_tuple_fallback(base))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_shared.py", line 307, in calculate_tuple_fallback
+     fallback.args = (join.join_type_list(items),)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 894, in join_type_list
+     joined = join_types(joined, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 284, in join_types
+     r = _union_join(s, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 250, in _union_join
+     return mypy.typeops.make_simplified_union([l, r])
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 466, in make_simplified_union
+     simplified_set: Sequence[Type] = _remove_redundant_union_items(items, keep_erased)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 552, in _remove_redundant_union_items
+     if is_proper_subtype(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 226, in is_proper_subtype
+     return _is_subtype(left, right, subtype_context, proper_subtype=True)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 368, in _is_subtype
+     return left.accept(SubtypeVisitor(orig_right, subtype_context, proper_subtype))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/types.py", line 1605, in accept
+     return visitor.visit_instance(self)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 615, in visit_instance
+     if right.type.is_protocol and is_protocol_implementation(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1169, in is_protocol_implementation
+     supertype = get_proper_type(find_member(member, right, left))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1255, in find_member
+     return find_node_type(method, itype, subtype, class_obj=class_obj)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1381, in find_node_type
+     signature = bind_self(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 357, in bind_self
+     assert METHOD_TYPE
+ AssertionError
- Tools/cases_generator/lexer.py:76:13: error: Expression type contains "Any" (has type "(str, Any)")  [no-any-expr]
- Tools/cases_generator/lexer.py:76:13: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/lexer.py:76:13: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- Tools/cases_generator/lexer.py:76:18: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/lexer.py:76:45: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- Tools/cases_generator/lexer.py:76:45: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-expr for more info
- Tools/cases_generator/lexer.py:76:45: error: Expression type contains "Any" (has type "dict_items[str, Any]")  [no-any-expr]
- Tools/cases_generator/lexer.py:77:11: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- Tools/cases_generator/lexer.py:78:5: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- Tools/cases_generator/lexer.py:79:9: error: Expression type contains "Any" (has type "(str, Any)")  [no-any-expr]
- Tools/cases_generator/lexer.py:79:9: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/lexer.py:79:9: error: Expression type contains "Any" (has type "dict[Any | str, str]")  [no-any-expr]
- Tools/cases_generator/lexer.py:79:10: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/lexer.py:79:10: error: Expression type contains "Any" (has type "Any | str")  [no-any-expr]
- Tools/cases_generator/lexer.py:79:67: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- Tools/cases_generator/lexer.py:79:67: error: Expression type contains "Any" (has type "dict_items[str, Any]")  [no-any-expr]
- Tools/cases_generator/lexer.py:131:10: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- Tools/cases_generator/lexer.py:131:10: error: Expression type contains "Any" (has type "dict_values[str, Any]")  [no-any-expr]
- Tools/cases_generator/lexer.py: note: In member "__repr__" of class "Token":
- Tools/cases_generator/lexer.py:273:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- Tools/cases_generator/lexer.py:273:5: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-explicit-override for more info
- Tools/cases_generator/lexer.py: note: In function "tokenize":
- Tools/cases_generator/lexer.py:301:22: error: Expression type contains "Any" (has type "dict[Any | str, str]")  [no-any-expr]
- Tools/cases_generator/lexer.py:302:20: error: Expression type contains "Any" (has type "dict[Any | str, str]")  [no-any-expr]
- Tools/cases_generator/_typing_backports.py: note: In function "assert_never":
- Tools/cases_generator/_typing_backports.py:15:26: error: The type "Never" doesn't define a __format__, __str__ or __repr__ method  [helpful-string]
- Tools/cases_generator/_typing_backports.py:15:26: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-helpful-string for more info
- Tools/cases_generator/cwriter.py: note: In member "emit" of class "CWriter":
- Tools/cases_generator/cwriter.py:111:14: error: Condition is always true  [redundant-expr]
- Tools/cases_generator/cwriter.py:111:14: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-redundant-expr for more info
- Tools/cases_generator/parsing.py: note: In member "__repr__" of class "Context":
- Tools/cases_generator/parsing.py:35:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- Tools/cases_generator/parsing.py: note: In member "__repr__" of class "StackEffect":
- Tools/cases_generator/parsing.py:83:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- Tools/cases_generator/parser.py:60: error: Unused "type: ignore" comment  [unused-ignore]
- Tools/cases_generator/analyzer.py: note: In member "dump" of class "Properties":
- Tools/cases_generator/analyzer.py:31:26: error: Expression type contains "Any" (has type "(str, Any)")  [no-any-expr]
- Tools/cases_generator/analyzer.py:31:26: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/analyzer.py:31:27: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/analyzer.py:31:65: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- Tools/cases_generator/analyzer.py:31:65: error: Expression type contains "Any" (has type "dict_items[str, Any]")  [no-any-expr]
- Tools/cases_generator/analyzer.py: note: In member "__str__" of class "StackItem":
- Tools/cases_generator/analyzer.py:105:5: error: Method "__str__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- Tools/cases_generator/analyzer.py: note: In member "__str__" of class "StackEffect":
- Tools/cases_generator/analyzer.py:120:5: error: Method "__str__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- Tools/cases_generator/analyzer.py: note: In member "__str__" of class "CacheEntry":
- Tools/cases_generator/analyzer.py:129:5: error: Method "__str__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- Tools/cases_generator/analyzer.py: note: In function "override_error":
- Tools/cases_generator/analyzer.py:268:9: error: The string for "None" isn't helpful in a user-facing or semantic string  [helpful-string]
- Tools/cases_generator/uop_metadata_generator.py:69:12: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/uop_metadata_generator.py:70:9: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/uop_metadata_generator.py:71:26: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/uop_metadata_generator.py:72:15: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/uop_metadata_generator.py:73:31: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/uop_id_generator.py:76:12: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/uop_id_generator.py:77:9: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/uop_id_generator.py:78:26: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/uop_id_generator.py:79:15: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/uop_id_generator.py:80:26: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/uop_id_generator.py:80:53: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier2_generator.py: note: In function "write_uop":
- Tools/cases_generator/tier2_generator.py:129:30: error: Expression type contains "Any" (has type "tuple[Any, ...]")  [no-any-expr]
- Tools/cases_generator/tier2_generator.py:129:30: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier2_generator.py: note: At top level:
- Tools/cases_generator/tier2_generator.py:192:12: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier2_generator.py:193:9: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier2_generator.py:194:26: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier2_generator.py:195:15: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier2_generator.py:196:24: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier2_generator.py:196:51: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier1_generator.py: note: In function "write_uop":
- Tools/cases_generator/tier1_generator.py:101:30: error: Expression type contains "Any" (has type "tuple[Any, ...]")  [no-any-expr]
- Tools/cases_generator/tier1_generator.py:101:30: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier1_generator.py: note: At top level:
- Tools/cases_generator/tier1_generator.py:196:12: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier1_generator.py:197:9: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier1_generator.py:198:26: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier1_generator.py:199:15: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier1_generator.py:200:24: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/tier1_generator.py:200:51: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/target_generator.py:49:12: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/target_generator.py:50:9: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/target_generator.py:51:26: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/target_generator.py:52:15: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/py_metadata_generator.py:93:12: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/py_metadata_generator.py:94:9: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/py_metadata_generator.py:95:26: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/py_metadata_generator.py:96:15: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/py_metadata_generator.py:97:30: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/opcode_metadata_generator.py:384:12: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/opcode_metadata_generator.py:385:9: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/opcode_metadata_generator.py:386:26: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/opcode_metadata_generator.py:387:15: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/opcode_metadata_generator.py:388:34: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/opcode_id_generator.py:61:12: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/opcode_id_generator.py:62:9: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/opcode_id_generator.py:63:26: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/opcode_id_generator.py:64:15: error: Expression has type "Any"  [no-any-expr]
- Tools/cases_generator/opcode_id_generator.py:65:32: error: Expression has type "Any"  [no-any-expr]

git-revise (https://github.com/mystor/git-revise)
+ Traceback (most recent call last):
+   File "/tmp/mypy_primer/new_mypy/venv/bin/mypy", line 8, in <module>
+     sys.exit(console_entry())
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/__main__.py", line 15, in console_entry
+     main()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 103, in main
+     res, messages, blockers = run_build(sources, options, fscache, t0, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 210, in run_build
+     res = build.build(sources, options, None, flush_errors, fscache, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 196, in build
+     result = _build(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 273, in _build
+     graph = dispatch(sources, manager, stdout)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3083, in dispatch
+     process_graph(graph, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3483, in process_graph
+     process_stale_scc(graph, scc, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3578, in process_stale_scc
+     mypy.semanal_main.semantic_analysis_for_scc(graph, scc, manager.errors)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_main.py", line 97, in semantic_analysis_for_scc
+     apply_semantic_analyzer_patches(patches)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 7053, in apply_semantic_analyzer_patches
+     patch_func()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 2400, in <lambda>
+     self.schedule_patch(PRIORITY_FALLBACKS, lambda: calculate_tuple_fallback(base))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_shared.py", line 307, in calculate_tuple_fallback
+     fallback.args = (join.join_type_list(items),)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 894, in join_type_list
+     joined = join_types(joined, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 284, in join_types
+     r = _union_join(s, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 250, in _union_join
+     return mypy.typeops.make_simplified_union([l, r])
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 466, in make_simplified_union
+     simplified_set: Sequence[Type] = _remove_redundant_union_items(items, keep_erased)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 552, in _remove_redundant_union_items
+     if is_proper_subtype(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 226, in is_proper_subtype
+     return _is_subtype(left, right, subtype_context, proper_subtype=True)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 368, in _is_subtype
+     return left.accept(SubtypeVisitor(orig_right, subtype_context, proper_subtype))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/types.py", line 1605, in accept
+     return visitor.visit_instance(self)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 615, in visit_instance
+     if right.type.is_protocol and is_protocol_implementation(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1169, in is_protocol_implementation
+     supertype = get_proper_type(find_member(member, right, left))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1255, in find_member
+     return find_node_type(method, itype, subtype, class_obj=class_obj)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1381, in find_node_type
+     signature = bind_self(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 357, in bind_self
+     assert METHOD_TYPE
+ AssertionError
- gitrevise/odb.py:60: error: Unused "type: ignore" comment  [unused-ignore]
- gitrevise/odb.py: note: In class "Oid":
- gitrevise/odb.py:63:5: error: Method "fromhex" is not using @override but is overriding a method in class "builtins.bytes"  [explicit-override]
- gitrevise/odb.py:63:5: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-explicit-override for more info
- gitrevise/odb.py: note: In member "__repr__" of class "Oid":
- gitrevise/odb.py:83:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/odb.py: note: In member "__str__" of class "Oid":
- gitrevise/odb.py:86:5: error: Method "__str__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/odb.py: note: In member "offset" of class "Signature":
- gitrevise/odb.py:140:16: error: Item "None" of "bytes | None" has no attribute "strip"  [union-attr]
- gitrevise/odb.py:140:16: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-union-attr for more info
- gitrevise/odb.py: note: In class "Repository":
- gitrevise/odb.py:168:15: error: Missing type parameters for generic type "Popen"  [type-arg]
- gitrevise/odb.py:168:15: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-type-arg for more info
- gitrevise/odb.py:169:24: error: Missing type parameters for generic type "TemporaryDirectory"  [type-arg]
- gitrevise/odb.py: note: In member "__exit__" of class "Repository":
- gitrevise/odb.py:274:12: error: Expression type contains "Any" (has type "TemporaryDirectory[Untyped] | None")  [no-any-expr]
- gitrevise/odb.py:274:12: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-expr for more info
- gitrevise/odb.py:275:13: error: Expression type contains "Any" (has type "TemporaryDirectory[Untyped]")  [no-any-expr]
- gitrevise/odb.py:277:9: error: Expression type contains "Any" (has type "Popen[Untyped]")  [no-any-expr]
- gitrevise/odb.py:278:9: error: Expression type contains "Any" (has type "Popen[Untyped]")  [no-any-expr]
- gitrevise/odb.py: note: In member "get_tempdir" of class "Repository":
- gitrevise/odb.py:282:12: error: Expression type contains "Any" (has type "TemporaryDirectory[Untyped] | None")  [no-any-expr]
- gitrevise/odb.py:287:21: error: Expression type contains "Any" (has type "TemporaryDirectory[str] | TemporaryDirectory[Untyped]")  [no-any-expr]
- gitrevise/odb.py:287:21: error: Expression type contains "Any" (has type "str | Untyped")  [no-any-expr]
- gitrevise/odb.py: note: In member "sign_buffer" of class "Repository":
- gitrevise/odb.py:333:19: error: Expression type contains "Any" (has type "CompletedProcess[Any]")  [no-any-expr]
- gitrevise/odb.py:341:19: error: Expression has type "Any"  [no-any-expr]
- gitrevise/odb.py:345:46: error: Expression type contains "Any" (has type "CompletedProcess[Any]")  [no-any-expr]
- gitrevise/odb.py:345:46: error: Expression has type "Any"  [no-any-expr]
- gitrevise/odb.py:346:32: error: Expression type contains "Any" (has type "CompletedProcess[Any]")  [no-any-expr]
- gitrevise/odb.py:346:32: error: Expression has type "Any"  [no-any-expr]
- gitrevise/odb.py:349:9: error: Expression has type "Any"  [no-any-expr]
- gitrevise/odb.py:349:21: error: Expression type contains "Any" (has type "CompletedProcess[Any]")  [no-any-expr]
- gitrevise/odb.py:349:21: error: Expression has type "Any"  [no-any-expr]
- gitrevise/odb.py:350:26: error: Expression has type "Any"  [no-any-expr]
- gitrevise/odb.py:350:33: error: Expression has type "Any"  [no-any-expr]
- gitrevise/odb.py: note: In member "get_obj" of class "Repository":
- gitrevise/odb.py:381:28: error: Expression type contains "Any" (has type "Popen[Untyped]")  [no-any-expr]
- gitrevise/odb.py:381:28: error: Expression type contains "Any" (has type "IO[Untyped] | None")  [no-any-expr]
- gitrevise/odb.py:381:49: error: Expression type contains "Any" (has type "Popen[Untyped]")  [no-any-expr]
- gitrevise/odb.py:381:49: error: Expression type contains "Any" (has type "IO[Untyped] | None")  [no-any-expr]
- gitrevise/odb.py:382:16: error: Expression type contains "Any" (has type "IO[Untyped] | None")  [no-any-expr]
- gitrevise/odb.py:383:16: error: Expression type contains "Any" (has type "IO[Untyped] | None")  [no-any-expr]
- gitrevise/odb.py:386:9: error: Expression type contains "Any" (has type "IO[Untyped]")  [no-any-expr]
- gitrevise/odb.py:387:9: error: Expression type contains "Any" (has type "IO[Untyped]")  [no-any-expr]
- gitrevise/odb.py:390:9: error: Usage of untyped name "resp" in typed context  [no-untyped-usage]
- gitrevise/odb.py:390:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-usage for more info
- gitrevise/odb.py:390:16: error: Expression type contains "Any" (has type "IO[Untyped]")  [no-any-expr]
- gitrevise/odb.py:390:16: error: Call to incomplete function "readline" of "IO" in typed context  [no-untyped-call]
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
- gitrevise/odb.py:390:16: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-call for more info
- gitrevise/odb.py:390:16: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:391:12: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:404:9: error: Usage of untyped name "parts" in typed context  [no-untyped-usage]
- gitrevise/odb.py:404:17: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:405:14: error: Usage of untyped name "kind" in typed context  [no-untyped-usage]
- gitrevise/odb.py:405:39: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:405:50: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:405:64: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:406:9: error: Usage of untyped name "body" in typed context  [no-untyped-usage]
- gitrevise/odb.py:406:16: error: Expression type contains "Any" (has type "IO[Untyped]")  [no-any-expr]
- gitrevise/odb.py:406:16: error: Call to incomplete function "read" of "IO" in typed context  [no-untyped-call]
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
- gitrevise/odb.py:406:16: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:407:28: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:411:12: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:411:12: error: Expression has type "Any (unannotated)"  [no-any-expr]
- gitrevise/odb.py:412:32: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:413:14: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:413:14: error: Expression has type "Any (unannotated)"  [no-any-expr]
- gitrevise/odb.py:414:30: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:415:14: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:415:14: error: Expression has type "Any (unannotated)"  [no-any-expr]
- gitrevise/odb.py:416:30: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py:418:30: error: Expression has type "Untyped"  [no-any-expr]
- gitrevise/odb.py: note: In member "__new__" of class "GitObj":
- gitrevise/odb.py:498:16: error: Redundant cast to "GitObjT@__new__"  [redundant-cast]
- gitrevise/odb.py:498:16: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-redundant-cast for more info
- gitrevise/odb.py: note: In member "__eq__" of class "GitObj":
- gitrevise/odb.py:530:5: error: Method "__eq__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/odb.py: note: In member "_parse_body" of class "Commit":
- gitrevise/odb.py:559:5: error: Method "_parse_body" is not using @override but is overriding a method in class "gitrevise.odb.GitObj"  [explicit-override]
- gitrevise/odb.py: note: In member "_persist_deps" of class "Commit":
- gitrevise/odb.py:659:5: error: Method "_persist_deps" is not using @override but is overriding a method in class "gitrevise.odb.GitObj"  [explicit-override]
- gitrevise/odb.py: note: In member "__repr__" of class "Commit":
- gitrevise/odb.py:664:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/odb.py: note: In member "__repr__" of class "Entry":
- gitrevise/odb.py:739:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/odb.py: note: In member "__eq__" of class "Entry":
- gitrevise/odb.py:742:5: error: Method "__eq__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/odb.py: note: In member "_parse_body" of class "Tree":
- gitrevise/odb.py:756:5: error: Method "_parse_body" is not using @override but is overriding a method in class "gitrevise.odb.GitObj"  [explicit-override]
- gitrevise/odb.py: note: In member "_persist_deps" of class "Tree":
- gitrevise/odb.py:766:5: error: Method "_persist_deps" is not using @override but is overriding a method in class "gitrevise.odb.GitObj"  [explicit-override]
- gitrevise/odb.py: note: In member "__repr__" of class "Tree":
- gitrevise/odb.py:796:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/odb.py: note: In member "__repr__" of class "Blob":
- gitrevise/odb.py:805:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/utils.py: note: In function "sh_run":
- gitrevise/utils.py:310:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- gitrevise/utils.py:310:1: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-explicit for more info
- gitrevise/utils.py:319:53: error: Expression type contains "Any" (has type "Sequence[Any]")  [no-any-expr]
- gitrevise/utils.py:320:16: error: Expression type contains "Any" (has type "Sequence[Any]")  [no-any-expr]
- gitrevise/utils.py:320:22: error: Expression type contains "Any" (has type "tuple[Any, ...]")  [no-any-expr]
- gitrevise/utils.py:320:30: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- gitrevise/merge.py: note: In function "merge_files":
- gitrevise/merge.py:294:16: error: Expression type contains "Any" (has type "(bool, Any)")  [no-any-expr]
- gitrevise/merge.py:294:24: error: Expression has type "Any"  [no-any-expr]
- gitrevise/merge.py: note: In function "normalize_conflict":
- gitrevise/merge.py:373:11: error: Condition is always true  [redundant-expr]
- gitrevise/merge.py:380:16: error: Condition is always true  [redundant-expr]
- gitrevise/merge.py:380:16: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-redundant-expr for more info
- gitrevise/merge.py:384:16: error: Condition is always false  [redundant-expr]
- gitrevise/merge.py:390:16: error: Condition is always true  [redundant-expr]
- gitrevise/merge.py:391:20: error: Condition is always false  [redundant-expr]
- gitrevise/merge.py:397:16: error: Left operand of "or" is always false  [redundant-expr]
- gitrevise/merge.py:397:16: error: Condition is always true  [redundant-expr]
- gitrevise/merge.py:400:13: error: Statement is unreachable  [unreachable]
- gitrevise/merge.py:400:13: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-unreachable for more info
- gitrevise/merge.py:413:14: error: Condition is always true  [redundant-expr]
- gitrevise/todo.py: note: In member "__str__" of class "StepKind":
- gitrevise/todo.py:19:5: error: Method "__str__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/todo.py: note: In member "__str__" of class "Step":
- gitrevise/todo.py:62:5: error: Method "__str__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/todo.py: note: In member "__eq__" of class "Step":
- gitrevise/todo.py:65:5: error: Method "__eq__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- gitrevise/todo.py: note: In function "apply_todos":
- gitrevise/todo.py:268:14: error: Condition is always true  [redundant-expr]
- gitrevise/todo.py:276:15: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py: note: In function "interactive":
- gitrevise/tui.py:124:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:124:23: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:125:32: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:125:48: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:136:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:137:49: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:141:54: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py: note: In function "enable_autosquash":
- gitrevise/tui.py:150:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:152:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py: note: In function "noninteractive":
- gitrevise/tui.py:166:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:172:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:175:32: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:179:42: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:185:15: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:190:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:191:29: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:191:30: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:191:65: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:195:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:199:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:203:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py: note: In function "inner_main":
- gitrevise/tui.py:231:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:233:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:236:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:238:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:243:12: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:249:32: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:254:8: error: Expression has type "Any"  [no-any-expr]
- gitrevise/tui.py:254:28: error: Expression has type "Any"  [no-any-expr]

attrs (https://github.com/python-attrs/attrs)
+ Traceback (most recent call last):
+   File "/tmp/mypy_primer/new_mypy/venv/bin/mypy", line 8, in <module>
+     sys.exit(console_entry())
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/__main__.py", line 15, in console_entry
+     main()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 103, in main
+     res, messages, blockers = run_build(sources, options, fscache, t0, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 210, in run_build
+     res = build.build(sources, options, None, flush_errors, fscache, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 196, in build
+     result = _build(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 273, in _build
+     graph = dispatch(sources, manager, stdout)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3083, in dispatch
+     process_graph(graph, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3483, in process_graph
+     process_stale_scc(graph, scc, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3578, in process_stale_scc
+     mypy.semanal_main.semantic_analysis_for_scc(graph, scc, manager.errors)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_main.py", line 97, in semantic_analysis_for_scc
+     apply_semantic_analyzer_patches(patches)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 7053, in apply_semantic_analyzer_patches
+     patch_func()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 2400, in <lambda>
+     self.schedule_patch(PRIORITY_FALLBACKS, lambda: calculate_tuple_fallback(base))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_shared.py", line 307, in calculate_tuple_fallback
+     fallback.args = (join.join_type_list(items),)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 894, in join_type_list
+     joined = join_types(joined, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 284, in join_types
+     r = _union_join(s, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 250, in _union_join
+     return mypy.typeops.make_simplified_union([l, r])
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 466, in make_simplified_union
+     simplified_set: Sequence[Type] = _remove_redundant_union_items(items, keep_erased)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 552, in _remove_redundant_union_items
+     if is_proper_subtype(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 226, in is_proper_subtype
+     return _is_subtype(left, right, subtype_context, proper_subtype=True)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 368, in _is_subtype
+     return left.accept(SubtypeVisitor(orig_right, subtype_context, proper_subtype))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/types.py", line 1605, in accept
+     return visitor.visit_instance(self)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 615, in visit_instance
+     if right.type.is_protocol and is_protocol_implementation(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1169, in is_protocol_implementation
+     supertype = get_proper_type(find_member(member, right, left))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1255, in find_member
+     return find_node_type(method, itype, subtype, class_obj=class_obj)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1381, in find_node_type
+     signature = bind_self(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 357, in bind_self
+     assert METHOD_TYPE
+ AssertionError
- src/attr/__init__.pyi:28: note: In module imported here:
- src/attr/_typing_compat.pyi: note: In class "AttrsInstance_":
- src/attr/_typing_compat.pyi:9:9: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/_typing_compat.pyi:9:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-explicit for more info
- src/attr/__init__.pyi:27: note: In module imported here:
- src/attr/_cmp.pyi:3:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/_cmp.pyi: note: In function "cmp_using":
- src/attr/_cmp.pyi:13:6: error: Missing type parameters for generic type "Type"  [type-arg]
- src/attr/_cmp.pyi:13:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-type-arg for more info
- src/attr/exceptions.pyi: note: In class "NotCallableError":
- src/attr/exceptions.pyi:16:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/exceptions.pyi: note: In member "__init__" of class "NotCallableError":
- src/attr/exceptions.pyi:17:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:55:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:56:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:57:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:59:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:61:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:65:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "Factory":
- src/attr/__init__.pyi:92:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In class "Attribute":
- src/attr/__init__.pyi:122:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In member "evolve" of class "Attribute":
- src/attr/__init__.pyi:128:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "attrib":
- src/attr/__init__.pyi:155:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:176:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:196:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:216:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "field":
- src/attr/__init__.pyi:234:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:255:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:275:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:295:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "attrs":
- src/attr/__init__.pyi:314:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:342:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "define":
- src/attr/__init__.pyi:370:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:396:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "frozen":
- src/attr/__init__.pyi:425:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi:451:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "fields":
- src/attr/__init__.pyi:475:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "fields_dict":
- src/attr/__init__.pyi:476:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "resolve_types":
- src/attr/__init__.pyi:478:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "make_class":
- src/attr/__init__.pyi:489:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "asdict":
- src/attr/__init__.pyi:522:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "astuple":
- src/attr/__init__.pyi:535:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "assoc":
- src/attr/__init__.pyi:543:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/__init__.pyi: note: In function "evolve":
- src/attr/__init__.pyi:544:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/validators.pyi:27:26: error: Missing type parameters for generic type "Iterable"  [type-arg]
- src/attr/validators.pyi:30:26: error: Missing type parameters for generic type "Mapping"  [type-arg]
- src/attr/validators.pyi: note: In function "instance_of":
- src/attr/validators.pyi:51:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/validators.pyi: note: In function "provides":
- src/attr/validators.pyi:52:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/setters.pyi: note: In function "frozen":
- src/attr/setters.pyi:7:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/setters.pyi: note: In function "validate":
- src/attr/setters.pyi:11:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/setters.pyi: note: In function "convert":
- src/attr/setters.pyi:14:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/filters.pyi: note: In function "include":
- src/attr/filters.pyi:5:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attr/filters.pyi: note: In function "exclude":
- src/attr/filters.pyi:6:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:10: note: In module imported here:
- src/attrs/__init__.pyi: note: In function "asdict":
- src/attrs/__init__.pyi:48:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- src/attrs/__init__.pyi: note: In function "astuple":
- src/attrs/__init__.pyi:61:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py: note: In class "C":
- tests/typing_example.py:16:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py:16:2: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-expr for more info
- tests/typing_example.py: note: In class "D":
- tests/typing_example.py:25:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "E":
- tests/typing_example.py:30:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "F":
- tests/typing_example.py:35:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In member "__init__" of class "F":
- tests/typing_example.py:36: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py: note: In class "F":
- tests/typing_example.py:37:9: error: Expression has type "Any"  [no-any-expr]
- tests/typing_example.py: note: In class "CC":
- tests/typing_example.py:43:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "DD":
- tests/typing_example.py:52:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "EE":
- tests/typing_example.py:57:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "FF":
- tests/typing_example.py:62:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In member "__init__" of class "FF":
- tests/typing_example.py:63: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py: note: In class "FF":
- tests/typing_example.py:64:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:64:14: error: Expression has type "Any"  [no-any-expr]
- tests/typing_example.py: note: In class "FFF":
- tests/typing_example.py:67:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "GG":
- tests/typing_example.py:78:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In member "__lt__" of class "GG":
- tests/typing_example.py:79: error: Method "__lt__" is not using @override but is overriding a method in class "tests.typing_example.DD"  [explicit-override]
- tests/typing_example.py: note: In member "__le__" of class "GG":
- tests/typing_example.py:79: error: Method "__le__" is not using @override but is overriding a method in class "tests.typing_example.DD"  [explicit-override]
- tests/typing_example.py: note: In member "__gt__" of class "GG":
- tests/typing_example.py:79: error: Method "__gt__" is not using @override but is overriding a method in class "tests.typing_example.DD"  [explicit-override]
- tests/typing_example.py: note: In member "__ge__" of class "GG":
- tests/typing_example.py:79: error: Method "__ge__" is not using @override but is overriding a method in class "tests.typing_example.DD"  [explicit-override]
- tests/typing_example.py: note: In member "__lt__" of class "GG":
- tests/typing_example.py:79: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-explicit-override for more info
- tests/typing_example.py: note: In class "HH":
- tests/typing_example.py:86:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In member "__lt__" of class "HH":
- tests/typing_example.py:87: error: Method "__lt__" is not using @override but is overriding a method in class "tests.typing_example.DD"  [explicit-override]
- tests/typing_example.py: note: In member "__le__" of class "HH":
- tests/typing_example.py:87: error: Method "__le__" is not using @override but is overriding a method in class "tests.typing_example.DD"  [explicit-override]
- tests/typing_example.py: note: In member "__gt__" of class "HH":
- tests/typing_example.py:87: error: Method "__gt__" is not using @override but is overriding a method in class "tests.typing_example.DD"  [explicit-override]
- tests/typing_example.py: note: In member "__ge__" of class "HH":
- tests/typing_example.py:87: error: Method "__ge__" is not using @override but is overriding a method in class "tests.typing_example.DD"  [explicit-override]
- tests/typing_example.py: note: At top level:
- tests/typing_example.py:95:1: error: Non-overlapping equality check (left operand type: "C", right operand type: "CC")  [comparison-overlap]
- tests/typing_example.py:95:1: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-comparison-overlap for more info
- tests/typing_example.py: note: In class "Error2":
- tests/typing_example.py:112:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "AliasExample":
- tests/typing_example.py:127:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "Validated":
- tests/typing_example.py:173:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In member "__init__" of class "Validated":
- tests/typing_example.py:174: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py: note: In class "Validated":
- tests/typing_example.py:177:19: error: Call to incomplete function "deep_iterable" in typed context  [no-untyped-call]
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: error: Call to incomplete function "deep_iterable" in typed context  [no-untyped-call]
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: error: Call to incomplete function "deep_iterable" in typed context  [no-untyped-call]
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: error: Call to incomplete function "deep_mapping" in typed context  [no-untyped-call]
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: error: Call to incomplete function "deep_mapping" in typed context  [no-untyped-call]
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:220:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:223:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:228:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:233:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:236:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:239:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:242:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:245:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py: note: In class "Validated2":
- tests/typing_example.py:250:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "Validated3":
- tests/typing_example.py:255:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "WithCustomRepr":
- tests/typing_example.py:274:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "WithCustomRepr2":
- tests/typing_example.py:282:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In class "ValidatedSetter":
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py: note: In class "ValidatedSetter2":
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py: note: In function "ft_hook":
- tests/typing_example.py:327: error: Missing type parameters for generic type "Attribute"  [type-arg]
- tests/typing_example.py:328:12: error: Expression type contains "Any" (has type "list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py: note: In function "ft_hook2":
- tests/typing_example.py:333: error: Missing type parameters for generic type "Attribute"  [type-arg]
- tests/typing_example.py:334: error: Missing type parameters for generic type "Attribute"  [type-arg]
- tests/typing_example.py:335:12: error: Expression type contains "Any" (has type "list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py: note: In class "TransformedAttrs":
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py: note: In class "TransformedAttrs2":
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py: note: In class "FactoryTest":
- tests/typing_example.py:396:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In member "__init__" of class "FactoryTest":
- tests/typing_example.py:397: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py: note: In class "FactoryTest":
- tests/typing_example.py:399:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:399:36: error: Expression type contains "Any" (has type "list[Any]")  [no-any-expr]
- tests/typing_example.py:400:36: error: Expression has type "Any"  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py: note: In member "<lambda>" of class "FactoryTest":
- tests/typing_example.py:400:60: error: Expression has type "Any"  [no-any-expr]
- tests/typing_example.py: note: In class "FactoryTest2":
- tests/typing_example.py:403:2: error: Expression type contains "Any" (has type overloaded function)  [no-any-expr]
- tests/typing_example.py: note: In member "__init__" of class "FactoryTest2":
- tests/typing_example.py:404: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py: note: In class "FactoryTest2":
- tests/typing_example.py:406:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- tests/typing_example.py:406:40: error: Expression type contains "Any" (has type "list[Any]")  [no-any-expr]
- tests/typing_example.py:407:40: error: Expression has type "Any"  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py: note: In member "<lambda>" of class "FactoryTest2":
- tests/typing_example.py:407:65: error: Expression has type "Any"  [no-any-expr]

parso (https://github.com/davidhalter/parso)
+ Traceback (most recent call last):
+   File "/tmp/mypy_primer/new_mypy/venv/bin/mypy", line 8, in <module>
+     sys.exit(console_entry())
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/__main__.py", line 15, in console_entry
+     main()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 103, in main
+     res, messages, blockers = run_build(sources, options, fscache, t0, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 210, in run_build
+     res = build.build(sources, options, None, flush_errors, fscache, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 196, in build
+     result = _build(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 273, in _build
+     graph = dispatch(sources, manager, stdout)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3083, in dispatch
+     process_graph(graph, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3483, in process_graph
+     process_stale_scc(graph, scc, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3578, in process_stale_scc
+     mypy.semanal_main.semantic_analysis_for_scc(graph, scc, manager.errors)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_main.py", line 97, in semantic_analysis_for_scc
+     apply_semantic_analyzer_patches(patches)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 7053, in apply_semantic_analyzer_patches
+     patch_func()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 2400, in <lambda>
+     self.schedule_patch(PRIORITY_FALLBACKS, lambda: calculate_tuple_fallback(base))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_shared.py", line 307, in calculate_tuple_fallback
+     fallback.args = (join.join_type_list(items),)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 894, in join_type_list
+     joined = join_types(joined, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 284, in join_types
+     r = _union_join(s, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 250, in _union_join
+     return mypy.typeops.make_simplified_union([l, r])
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 466, in make_simplified_union
+     simplified_set: Sequence[Type] = _remove_redundant_union_items(items, keep_erased)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 552, in _remove_redundant_union_items
+     if is_proper_subtype(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 226, in is_proper_subtype
+     return _is_subtype(left, right, subtype_context, proper_subtype=True)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 368, in _is_subtype
+     return left.accept(SubtypeVisitor(orig_right, subtype_context, proper_subtype))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/types.py", line 1605, in accept
+     return visitor.visit_instance(self)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 615, in visit_instance
+     if right.type.is_protocol and is_protocol_implementation(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1169, in is_protocol_implementation
+     supertype = get_proper_type(find_member(member, right, left))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1255, in find_member
+     return find_node_type(method, itype, subtype, class_obj=class_obj)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1381, in find_node_type
+     signature = bind_self(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 357, in bind_self
+     assert METHOD_TYPE
+ AssertionError
- parso/normalizer.py: note: In member "__new__" of class "_NormalizerMeta":
- parso/normalizer.py:6:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:6:5: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-def for more info
- parso/normalizer.py:7:37: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:7:37: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-expr for more info
- parso/normalizer.py:7:43: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:7:50: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:8:9: error: "_NormalizerMeta" has no attribute "rule_value_classes"  [attr-defined]
- parso/normalizer.py:9:9: error: "_NormalizerMeta" has no attribute "rule_type_classes"  [attr-defined]
- parso/normalizer.py: note: In member "__init__" of class "Normalizer":
- parso/normalizer.py:17:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:18:9: error: Usage of untyped name "grammar" in typed context  [no-untyped-usage]
- parso/normalizer.py:18:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-usage for more info
- parso/normalizer.py:18:24: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:19:9: error: Usage of untyped name "_config" in typed context  [no-untyped-usage]
- parso/normalizer.py:19:24: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:20:9: error: Need type annotation for "issues" (hint: "issues: list[<type>] = ...")  [var-annotated]
- parso/normalizer.py:20:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-var-annotated for more info
- parso/normalizer.py:22:37: error: Call to incomplete function "_instantiate_rules" of "Normalizer" in typed context  [no-untyped-call]
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
- parso/normalizer.py:22:37: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-call for more info
- parso/normalizer.py:22:37: error: "_instantiate_rules" of "Normalizer" does not return a value (it only ever returns None)  [func-returns-value]
- parso/normalizer.py:22:37: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-func-returns-value for more info
- parso/normalizer.py:22:37: error: Incompatible types in assignment (expression has type "None", variable has type "dict[str, list[type]]")  [assignment]
- parso/normalizer.py:23:38: error: Call to incomplete function "_instantiate_rules" of "Normalizer" in typed context  [no-untyped-call]
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
- parso/normalizer.py:23:38: error: "_instantiate_rules" of "Normalizer" does not return a value (it only ever returns None)  [func-returns-value]
- parso/normalizer.py:23:38: error: Incompatible types in assignment (expression has type "None", variable has type "dict[str, list[type]]")  [assignment]
- parso/normalizer.py: note: In member "_instantiate_rules" of class "Normalizer":
- parso/normalizer.py:25:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:26:9: error: Need type annotation for "dct" (hint: "dct: dict[<type>, <type>] = ...")  [var-annotated]
- parso/normalizer.py:28:25: error: Expression type contains "Any" (has type "Any | dict[Any, Any]")  [no-any-expr]
- parso/normalizer.py:28:39: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:28:45: error: Expression type contains "Any" (has type "dict[Any, Any]")  [no-any-expr]
- parso/normalizer.py:29:13: error: Expression type contains "Any" (has type "Any | (Any, Any)")  [no-any-expr]
- parso/normalizer.py:29:13: error: Expression has type "Any"  [no-any-expr]
- parso/normalizer.py:29:40: error: Expression type contains "Any" (has type "Any | dict[Any, Any]")  [no-any-expr]
- parso/normalizer.py:29:40: error: Expression type contains "Any" (has type "Any | dict_items[Any, Any]")  [no-any-expr]
- parso/normalizer.py:30:23: error: Expression has type "Any"  [no-any-expr]
- parso/normalizer.py:30:23: error: Expression type contains "Any" (has type "list[Any]")  [no-any-expr]
- parso/normalizer.py:30:24: error: Expression has type "Any"  [no-any-expr]
- parso/normalizer.py:30:55: error: Expression has type "Any"  [no-any-expr]
- parso/normalizer.py:31:17: error: Expression type contains "Any" (has type "dict[Any (unannotated), Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py:31:17: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/normalizer.py:31:32: error: Expression has type "Any"  [no-any-expr]
- parso/normalizer.py:31:39: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py:31:50: error: Expression type contains "Any" (has type "list[Any]")  [no-any-expr]
- parso/normalizer.py:32:9: error: No return value expected  [return-value]
- parso/normalizer.py:32:16: error: Expression type contains "Any" (has type "dict[Any (unannotated), Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py: note: In member "walk" of class "Normalizer":
- parso/normalizer.py:34:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:35:9: error: Call to incomplete function "initialize" of "Normalizer" in typed context  [no-untyped-call]
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
- parso/normalizer.py:35:25: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:36:17: error: Call to incomplete function "visit" of "Normalizer" in typed context  [no-untyped-call]
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
- parso/normalizer.py:36:17: error: "visit" of "Normalizer" does not return a value (it only ever returns None)  [func-returns-value]
- parso/normalizer.py:36:28: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "visit" of class "Normalizer":
- parso/normalizer.py:40:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:42:13: error: Usage of untyped name "children" in typed context  [no-untyped-usage]
- parso/normalizer.py:42:24: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:44:20: error: Call to incomplete function "visit_leaf" of "Normalizer" in typed context  [no-untyped-call]
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
- parso/normalizer.py:44:36: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:46:18: error: Call to incomplete function "visit_node" of "Normalizer" in typed context  [no-untyped-call]
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:46:34: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:47:17: error: No return value expected  [return-value]
- parso/normalizer.py:47:31: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:47:32: error: Call to incomplete function "visit" of "Normalizer" in typed context  [no-untyped-call]
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
- parso/normalizer.py:47:32: error: "visit" of "Normalizer" does not return a value (it only ever returns None)  [func-returns-value]
- parso/normalizer.py:47:32: error: Generator has incompatible item type "None"; expected "str"  [misc]
- parso/normalizer.py:47:43: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:47:63: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In class "Normalizer":
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py: note: In member "visit_node" of class "Normalizer":
- parso/normalizer.py:50:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:50:5: error: The return type of a generator function should be "Generator" or one of its supertypes  [misc]
- parso/normalizer.py: note: In class "Normalizer":
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:50:5: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-decorated for more info
- parso/normalizer.py: note: In member "visit_node" of class "Normalizer":
- parso/normalizer.py:51:9: error: Call to incomplete function "_check_type_rules" of "Normalizer" in typed context  [no-untyped-call]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
- parso/normalizer.py:51:32: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "_check_type_rules" of class "Normalizer":
- parso/normalizer.py:54:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:55:51: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:56:13: error: "type" has no attribute "feed_node"  [attr-defined]
- parso/normalizer.py:56:28: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "visit_leaf" of class "Normalizer":
- parso/normalizer.py:58:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:59:9: error: Call to incomplete function "_check_type_rules" of "Normalizer" in typed context  [no-untyped-call]
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
- parso/normalizer.py:59:32: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:61:52: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:62:13: error: "type" has no attribute "feed_node"  [attr-defined]
- parso/normalizer.py:62:28: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:64:9: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/normalizer.py:64:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-return for more info
- parso/normalizer.py:64:16: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:64:16: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/normalizer.py:64:30: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "initialize" of class "Normalizer":
- parso/normalizer.py:66:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py: note: In member "add_issue" of class "Normalizer":
- parso/normalizer.py:72:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:73:23: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:73:29: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:73:35: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:74:25: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py:75:13: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py:75:13: error: Call to incomplete function "append" of "list" in typed context  [no-untyped-call]
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
- parso/normalizer.py:76:9: error: No return value expected  [return-value]
- parso/normalizer.py: note: In member "register_rule" of class "Normalizer":
- parso/normalizer.py:79:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py: note: In class "Normalizer":
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py: note: In member "register_rule" of class "Normalizer":
- parso/normalizer.py:88:18: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py:88:23: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:89:17: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py:89:22: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:90:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:91:13: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py:91:27: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:92:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:93:13: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py:93:26: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:95:16: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py:95:31: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- parso/normalizer.py: note: In function "register_rule":
- parso/normalizer.py:98:9: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:99:13: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:99:22: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:100:17: error: "type[Normalizer]" has no attribute "rule_value_classes"  [attr-defined]
- parso/normalizer.py:100:51: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:100:65: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:101:13: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:101:22: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:102:17: error: "type[Normalizer]" has no attribute "rule_type_classes"  [attr-defined]
- parso/normalizer.py:102:50: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:102:64: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:103:13: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/normalizer.py:103:20: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "register_rule" of class "Normalizer":
- parso/normalizer.py:105:9: error: No return value expected  [return-value]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py: note: In member "create_normalizer" of class "NormalizerConfig":
- parso/normalizer.py:111:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:112:12: error: Condition is always false  [redundant-expr]
- parso/normalizer.py:112:12: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-redundant-expr for more info
- parso/normalizer.py:113:13: error: Statement is unreachable  [unreachable]
- parso/normalizer.py:113:13: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-unreachable for more info
- parso/normalizer.py:115:9: error: No return value expected  [return-value]
- parso/normalizer.py:115:38: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "__init__" of class "Issue":
- parso/normalizer.py:119:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:120:9: error: Usage of untyped name "code" in typed context  [no-untyped-usage]
- parso/normalizer.py:120:21: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:124:9: error: Usage of untyped name "message" in typed context  [no-untyped-usage]
- parso/normalizer.py:124:24: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:128:9: error: Usage of untyped name "start_pos" in typed context  [no-untyped-usage]
- parso/normalizer.py:128:26: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:133:9: error: Usage of untyped name "end_pos" in typed context  [no-untyped-usage]
- parso/normalizer.py:133:24: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "__eq__" of class "Issue":
- parso/normalizer.py:135:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:135:5: error: Return type "None" of "__eq__" incompatible with return type "bool" in supertype "object"  [override]
- parso/normalizer.py:135:5: error: Method "__eq__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- parso/normalizer.py:135:5: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-explicit-override for more info
- parso/normalizer.py:136:9: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/normalizer.py:136:16: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:136:16: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/normalizer.py:136:34: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:136:54: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:136:54: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/normalizer.py:136:67: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "__ne__" of class "Issue":
- parso/normalizer.py:138:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:138:5: error: Return type "None" of "__ne__" incompatible with return type "bool" in supertype "object"  [override]
- parso/normalizer.py:138:5: error: Method "__ne__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- parso/normalizer.py:139:9: error: No return value expected  [return-value]
- parso/normalizer.py:139:20: error: Call to incomplete function "__eq__" of "Issue" in typed context  [no-untyped-call]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
- parso/normalizer.py:139:20: error: "__eq__" of "Issue" does not return a value (it only ever returns None)  [func-returns-value]
- parso/normalizer.py:139:32: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "__hash__" of class "Issue":
- parso/normalizer.py:141:5: error: Return type "None" of "__hash__" incompatible with return type "int" in supertype "object"  [override]
- parso/normalizer.py:141:5: error: Method "__hash__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- parso/normalizer.py:142:9: error: No return value expected  [return-value]
- parso/normalizer.py:142:21: error: Expression type contains "Any" (has type "(Untyped, Untyped)")  [no-any-expr]
- parso/normalizer.py:142:22: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:142:33: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "__repr__" of class "Issue":
- parso/normalizer.py:144:5: error: Return type "None" of "__repr__" incompatible with return type "str" in supertype "object"  [override]
- parso/normalizer.py:144:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- parso/normalizer.py:145:9: error: No return value expected  [return-value]
- parso/normalizer.py:145:29: error: Expression type contains "Any" (has type "(str, Untyped)")  [no-any-expr]
- parso/normalizer.py:145:55: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "__init__" of class "Rule":
- parso/normalizer.py:152:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:153:9: error: Usage of untyped name "_normalizer" in typed context  [no-untyped-usage]
- parso/normalizer.py:153:28: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "is_issue" of class "Rule":
- parso/normalizer.py:155:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py: note: In member "get_node" of class "Rule":
- parso/normalizer.py:158:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:159:9: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/normalizer.py:159:16: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "_get_message" of class "Rule":
- parso/normalizer.py:161:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:162:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:163:13: error: Usage of untyped name "message" in typed context  [no-untyped-usage]
- parso/normalizer.py:164:16: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:166:9: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/normalizer.py:166:16: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "add_issue" of class "Rule":
- parso/normalizer.py:168:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:169:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:170:13: error: Usage of untyped name "code" in typed context  [no-untyped-usage]
- parso/normalizer.py:171:16: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:174:19: error: Call to incomplete function "_get_message" of "Rule" in typed context  [no-untyped-call]
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:174:19: error: "_get_message" of "Rule" does not return a value (it only ever returns None)  [func-returns-value]
- parso/normalizer.py:174:37: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:174:46: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:176:9: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:176:36: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:176:42: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "feed_node" of class "Rule":
- parso/normalizer.py:178:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:179:12: error: Call to incomplete function "is_issue" of "Rule" in typed context  [no-untyped-call]
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
- parso/normalizer.py:179:12: error: "is_issue" of "Rule" does not return a value (it only ever returns None)  [func-returns-value]
- parso/normalizer.py:179:12: error: Condition is always false  [redundant-expr]
- parso/normalizer.py:179:26: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:180:13: error: Statement is unreachable  [unreachable]
- parso/normalizer.py: note: In member "__init__" of class "RefactoringNormalizer":
- parso/normalizer.py:185:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:186:9: error: Usage of untyped name "_node_to_str_map" in typed context  [no-untyped-usage]
- parso/normalizer.py:186:33: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "visit" of class "RefactoringNormalizer":
- parso/normalizer.py:188:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:188:5: error: Method "visit" is not using @override but is overriding a method in class "parso.normalizer.Normalizer"  [explicit-override]
- parso/normalizer.py:190:13: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/normalizer.py:190:20: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:190:42: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:192:34: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py: note: In member "visit_leaf" of class "RefactoringNormalizer":
- parso/normalizer.py:194:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/normalizer.py:194:5: error: Method "visit_leaf" is not using @override but is overriding a method in class "parso.normalizer.Normalizer"  [explicit-override]
- parso/normalizer.py:196:13: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/normalizer.py:196:20: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:196:42: error: Expression has type "Untyped"  [no-any-expr]
- parso/normalizer.py:198:39: error: Expression has type "Untyped"  [no-any-expr]
- parso/file_io.py: note: In member "__init__" of class "FileIO":
- parso/file_io.py:7: error: Missing type parameters for generic type "PathLike"  [type-arg]
- parso/file_io.py:7: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-type-arg for more info
- parso/file_io.py:8:23: error: Expression type contains "Any" (has type "PathLike[Untyped] | str")  [no-any-expr]
- parso/file_io.py:10:21: error: Expression type contains "Any" (has type "Path | PathLike[Untyped]")  [no-any-expr]
- parso/file_io.py: note: In member "read" of class "FileIO":
- parso/file_io.py:16:19: error: Expression type contains "Any" (has type "Path | PathLike[Untyped]")  [no-any-expr]
- parso/file_io.py:17:13: error: No return value expected  [return-value]
- parso/file_io.py: note: In member "get_last_modified" of class "FileIO":
- parso/file_io.py:24:13: error: No return value expected  [return-value]
- parso/file_io.py:24:37: error: Expression type contains "Any" (has type "Path | PathLike[Untyped]")  [no-any-expr]
- parso/file_io.py: note: In member "__repr__" of class "FileIO":
- parso/file_io.py:28:5: error: Return type "None" of "__repr__" incompatible with return type "str" in supertype "object"  [override]
- parso/file_io.py:28:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- parso/file_io.py:29:9: error: No return value expected  [return-value]
- parso/file_io.py:29:27: error: Expression type contains "Any" (has type "(str, Path | PathLike[Untyped])")  [no-any-expr]
- parso/file_io.py:29:53: error: Expression type contains "Any" (has type "Path | PathLike[Untyped]")  [no-any-expr]
- parso/file_io.py: note: In member "__init__" of class "KnownContentFileIO":
- parso/file_io.py:33:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/file_io.py:34:26: error: Expression has type "Untyped"  [no-any-expr]
- parso/file_io.py:35:9: error: Usage of untyped name "_content" in typed context  [no-untyped-usage]
- parso/file_io.py:35:25: error: Expression has type "Untyped"  [no-any-expr]
- parso/file_io.py: note: In member "read" of class "KnownContentFileIO":
- parso/file_io.py:37:5: error: Method "read" is not using @override but is overriding a method in class "parso.file_io.FileIO"  [explicit-override]
- parso/file_io.py:38:9: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/file_io.py:38:16: error: Expression has type "Untyped"  [no-any-expr]
- parso/python/token.py: note: In member "__repr__" of class "TokenType":
- parso/python/token.py:14:5: error: Return type "None" of "__repr__" incompatible with return type "str" in supertype "object"  [override]
- parso/python/token.py:14:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- parso/python/token.py:15:9: error: No return value expected  [return-value]
- parso/cache.py: note: In function "_get_default_cache_path":
- parso/cache.py:73:5: error: No return value expected  [return-value]
- parso/cache.py: note: At top level:
- parso/cache.py:76:1: error: Need type annotation for "_default_cache_path" (hint: "_default_cache_path: <type> | None = ...")  [var-annotated]
- parso/cache.py:76:23: error: "_get_default_cache_path" does not return a value (it only ever returns None)  [func-returns-value]
- parso/cache.py: note: In function "_get_cache_clear_lock_path":
- parso/cache.py:89:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:96:18: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:96:18: error: Expression type contains "Any" (has type "Any (unannotated) | None")  [no-any-expr]
- parso/cache.py:96:32: error: Expression type contains "Any" (has type "Any (unannotated) | None")  [no-any-expr]
- parso/cache.py:97:5: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/cache.py:97:12: error: Expression type contains "Any" (has type "Any (unannotated) | None")  [no-any-expr]
- parso/cache.py:97:12: error: Item "None" of "Any (unannotated) | None" has no attribute "joinpath"  [union-attr]
- parso/cache.py:97:12: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-union-attr for more info
- parso/cache.py:97:12: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/cache.py: note: At top level:
- parso/cache.py:100:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- parso/cache.py:100:1: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-explicit for more info
- parso/cache.py: note: In member "__init__" of class "_NodeCacheItem":
- parso/cache.py:104:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:105:9: error: Usage of untyped name "node" in typed context  [no-untyped-usage]
- parso/cache.py:105:21: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:106:9: error: Usage of untyped name "lines" in typed context  [no-untyped-usage]
- parso/cache.py:106:22: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:107:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:108:13: error: Usage of untyped name "change_time" in typed context  [no-untyped-usage]
- parso/cache.py:109:9: error: Usage of untyped name "change_time" in typed context  [no-untyped-usage]
- parso/cache.py:109:28: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:110:9: error: Usage of untyped name "last_used" in typed context  [no-untyped-usage]
- parso/cache.py:110:26: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py: note: In function "load_module":
- parso/cache.py:113:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:117:5: error: Usage of untyped name "p_time" in typed context  [no-untyped-usage]
- parso/cache.py:117:14: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:118:8: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:122:29: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- parso/cache.py:122:29: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:122:42: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:122:58: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:123:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:123:12: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/cache.py:123:22: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:124:13: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:125:13: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/cache.py:125:20: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:127:16: error: Call to incomplete function "_load_from_file_system" in typed context  [no-untyped-call]
- parso/cache.py:127:16: note: Type is "def (hashed_grammar: Untyped, path: Untyped, p_time: Untyped, cache_path: Untyped =) -> None"
- parso/cache.py:128:13: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:129:13: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:130:13: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:131:24: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py: note: In function "_load_from_file_system":
- parso/cache.py:135:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:136:18: error: Call to incomplete function "_get_hashed_path" in typed context  [no-untyped-call]
- parso/cache.py:136:18: note: Type is "def (hashed_grammar: Untyped, path: Untyped, cache_path: Untyped =) -> None"
- parso/cache.py:136:18: error: "_get_hashed_path" does not return a value (it only ever returns None)  [func-returns-value]
- parso/cache.py:136:35: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:136:51: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:136:68: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:138:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:138:12: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/cache.py:138:38: error: Argument 1 to "getmtime" has incompatible type "None"; expected "int | str | bytes | PathLike[str] | PathLike[bytes]"  [arg-type]
- parso/cache.py:142:14: error: No overload variant of "open" matches argument types "None", "str"  [call-overload]
- parso/cache.py:142:14: note: Possible overload variants:
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'r+' | '+r' | 'rt+' | 'r+t' | '+rt' | 'tr+' | 't+r' | '+tr' | 'w+' | '+w' | 'wt+' | 'w+t' | '+wt' | 'tw+' | 't+w' | '+tw' | 'a+' | '+a' | 'at+' | 'a+t' | '+at' | 'ta+' | 't+a' | '+ta' | 'x+' | '+x' | 'xt+' | 'x+t' | '+xt' | 'tx+' | 't+x' | '+tx' | 'w' | 'wt' | 'tw' | 'a' | 'at' | 'ta' | 'x' | 'xt' | 'tx' | 'r' | 'rt' | 'tr' | 'U' | 'rU' | 'Ur' | 'rtU' | 'rUt' | 'Urt' | 'trU' | 'tUr' | 'Utr' = ..., buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> TextIOWrapper
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: 0, encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> FileIO
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedRandom
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedWriter
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedReader
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: int = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BinaryIO
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: str, buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> IO[Any]
- parso/cache.py:142:14: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-overload for more info
- parso/cache.py:145:37: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:151:9: error: Call to incomplete function "_set_cache_item" in typed context  [no-untyped-call]
- parso/cache.py:151:9: note: Type is "def (hashed_grammar: Untyped, path: Untyped, module_cache_item: Untyped) -> None"
- parso/cache.py:151:25: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:151:41: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:151:47: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:152:40: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:153:9: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/cache.py:153:16: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py: note: In function "_set_cache_item":
- parso/cache.py:156:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:157:11: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:157:16: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:157:28: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- parso/cache.py:157:28: error: Expression type contains "Any" (has type "dict_values[str, Any]")  [no-any-expr]
- parso/cache.py:162:9: error: Expression type contains "Any" (has type "(str, Any)")  [no-any-expr]
- parso/cache.py:162:9: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:162:38: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- parso/cache.py:162:38: error: Expression type contains "Any" (has type "dict_items[str, Any]")  [no-any-expr]
- parso/cache.py:163:13: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- parso/cache.py:163:33: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:163:33: error: Expression type contains "Any" (has type "dict[Any, Any]")  [no-any-expr]
- parso/cache.py:164:17: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:164:23: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:165:40: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:166:20: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:169:5: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- parso/cache.py:169:5: error: Expression has type "Any"  [no-any-expr]
- parso/cache.py:169:29: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:169:45: error: Expression type contains "Any" (has type "dict[Any, Any]")  [no-any-expr]
- parso/cache.py:169:49: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:169:57: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py: note: In function "try_to_save_module":
- parso/cache.py:172:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:173:5: error: Usage of untyped name "path" in typed context  [no-untyped-usage]
- parso/cache.py:173:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:175:18: error: Expression type contains "Any" (has type "None | Untyped")  [no-any-expr]
- parso/cache.py:175:26: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:175:44: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:180:27: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:180:35: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:180:42: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- parso/cache.py:181:5: error: Call to incomplete function "_set_cache_item" in typed context  [no-untyped-call]
- parso/cache.py:181:5: note: Type is "def (hashed_grammar: Untyped, path: Untyped, module_cache_item: Untyped) -> None"
- parso/cache.py:181:21: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:181:37: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:182:21: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:184:13: error: Call to incomplete function "_save_to_file_system" in typed context  [no-untyped-call]
- parso/cache.py:184:13: note: Type is "def (hashed_grammar: Untyped, path: Untyped, item: Untyped, cache_path: Untyped =) -> None"
- parso/cache.py:184:34: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:184:50: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:184:73: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:190:76: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:194:13: error: Call to incomplete function "_remove_cache_and_update_lock" in typed context  [no-untyped-call]
- parso/cache.py:194:13: note: Type is "def (cache_path: Untyped =) -> None"
- parso/cache.py:194:54: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py: note: In function "_save_to_file_system":
- parso/cache.py:197:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:198:10: error: No overload variant of "open" matches argument types "None", "str"  [call-overload]
- parso/cache.py:198:10: note: Possible overload variants:
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'r+' | '+r' | 'rt+' | 'r+t' | '+rt' | 'tr+' | 't+r' | '+tr' | 'w+' | '+w' | 'wt+' | 'w+t' | '+wt' | 'tw+' | 't+w' | '+tw' | 'a+' | '+a' | 'at+' | 'a+t' | '+at' | 'ta+' | 't+a' | '+ta' | 'x+' | '+x' | 'xt+' | 'x+t' | '+xt' | 'tx+' | 't+x' | '+tx' | 'w' | 'wt' | 'tw' | 'a' | 'at' | 'ta' | 'x' | 'xt' | 'tx' | 'r' | 'rt' | 'tr' | 'U' | 'rU' | 'Ur' | 'rtU' | 'rUt' | 'Urt' | 'trU' | 'tUr' | 'Utr' = ..., buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> TextIOWrapper
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: 0, encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> FileIO
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedRandom
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedWriter
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedReader
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: int = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BinaryIO
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: str, buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> IO[Any]
- parso/cache.py:198:15: error: Call to incomplete function "_get_hashed_path" in typed context  [no-untyped-call]
- parso/cache.py:198:15: error: "_get_hashed_path" does not return a value (it only ever returns None)  [func-returns-value]
- parso/cache.py:198:15: note: Type is "def (hashed_grammar: Untyped, path: Untyped, cache_path: Untyped =) -> None"
- parso/cache.py:198:32: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:198:48: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:198:65: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:199:21: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py: note: In function "clear_cache":
- parso/cache.py:202:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:203:8: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:204:9: error: Usage of untyped name "cache_path" in typed context  [no-untyped-usage]
- parso/cache.py:204:22: error: Expression type contains "Any" (has type "Any (unannotated) | None")  [no-any-expr]
- parso/cache.py:205:19: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:206:5: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- parso/cache.py: note: In function "clear_inactive_cache":
- parso/cache.py:209:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:213:8: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:214:9: error: Usage of untyped name "cache_path" in typed context  [no-untyped-usage]
- parso/cache.py:214:22: error: Expression type contains "Any" (has type "Any (unannotated) | None")  [no-any-expr]
- parso/cache.py:215:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:216:9: error: No return value expected  [return-value]
- parso/cache.py:217:31: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:218:9: error: Usage of untyped name "version_path" in typed context  [no-untyped-usage]
- parso/cache.py:218:24: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:219:16: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:221:32: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:228:9: error: No return value expected  [return-value]
- parso/cache.py: note: In function "_touch":
- parso/cache.py:231:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:233:18: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:236:25: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:239:13: error: No return value expected  [return-value]
- parso/cache.py:240:5: error: No return value expected  [return-value]
- parso/cache.py: note: In function "_remove_cache_and_update_lock":
- parso/cache.py:243:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:244:17: error: Call to incomplete function "_get_cache_clear_lock_path" in typed context  [no-untyped-call]
- parso/cache.py:244:17: note: Type is "def (cache_path: Untyped =) -> None"
- parso/cache.py:244:17: error: "_get_cache_clear_lock_path" does not return a value (it only ever returns None)  [func-returns-value]
- parso/cache.py:244:55: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:246:44: error: Argument 1 to "getmtime" has incompatible type "None"; expected "int | str | bytes | PathLike[str] | PathLike[bytes]"  [arg-type]
- parso/cache.py:253:12: error: Condition is always true  [redundant-expr]
- parso/cache.py:253:16: error: Call to incomplete function "_touch" in typed context  [no-untyped-call]
- parso/cache.py:253:16: note: Type is "def (path: Untyped) -> None"
- parso/cache.py:253:16: error: "_touch" does not return a value (it only ever returns None)  [func-returns-value]
- parso/cache.py:257:13: error: No return value expected  [return-value]
- parso/cache.py:259:9: error: Statement is unreachable  [unreachable]
- parso/cache.py: note: In function "_get_hashed_path":
- parso/cache.py:262:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:263:17: error: Call to incomplete function "_get_cache_directory_path" in typed context  [no-untyped-call]
- parso/cache.py:263:17: note: Type is "def (cache_path: Untyped =) -> None"
- parso/cache.py:263:17: error: "_get_cache_directory_path" does not return a value (it only ever returns None)  [func-returns-value]
- parso/cache.py:263:54: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:265:36: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:266:5: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/cache.py:266:12: error: No overload variant of "join" matches argument types "None", "str"  [call-overload]
- parso/cache.py:266:12: note: Possible overload variants:
- parso/cache.py:266:12: note:     def join(str, /, *paths: str) -> str
- parso/cache.py:266:12: note:     def join(str | PathLike[str], /, *paths: str | PathLike[str]) -> str
- parso/cache.py:266:12: note:     def join(bytes | PathLike[bytes], /, *paths: bytes | PathLike[bytes]) -> bytes
- parso/cache.py:266:50: error: Expression type contains "Any" (has type "(Untyped, str)")  [no-any-expr]
- parso/cache.py:266:51: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py: note: In function "_get_cache_directory_path":
- parso/cache.py:269:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/cache.py:270:8: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:271:9: error: Usage of untyped name "cache_path" in typed context  [no-untyped-usage]
- parso/cache.py:271:22: error: Expression type contains "Any" (has type "Any (unannotated) | None")  [no-any-expr]
- parso/cache.py:272:5: error: Usage of untyped name "directory" in typed context  [no-untyped-usage]
- parso/cache.py:272:17: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:273:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:274:21: error: Expression has type "Untyped"  [no-any-expr]
- parso/cache.py:275:5: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/cache.py:275:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/utils.py: note: In function "python_bytes_to_unicode":
- parso/utils.py:90:21: error: Expression has type "Any"  [no-any-expr]
- parso/utils.py:91:30: error: Expression has type "Any"  [no-any-expr]
- parso/utils.py:93:13: error: No return value expected  [return-value]
- parso/utils.py:95:27: error: Item "None" of "Match[bytes] | None" has no attribute "group"  [union-attr]
- parso/utils.py:95:73: error: Argument 2 to "match" has incompatible type "str | bytes"; expected "Buffer"  [arg-type]
- parso/utils.py:100:16: error: Condition is always true  [redundant-expr]
- parso/utils.py:100:31: error: Intersection of "bytes & str" cannot exist: would have incompatible method signatures  [unreachable]
- parso/utils.py:101:21: error: Incompatible types in assignment (expression has type "str", variable has type "bytes")  [assignment]
- parso/utils.py:102:13: error: No return value expected  [return-value]
- parso/utils.py:105:13: error: No return value expected  [return-value]
- parso/utils.py:111:16: error: "detect_encoding" does not return a value (it only ever returns None)  [func-returns-value]
- parso/utils.py:111:16: error: Incompatible types in assignment (expression has type "None", variable has type "str")  [assignment]
- parso/utils.py: note: In function "version_info":
- parso/utils.py:132:21: error: Argument 1 to "Version" has incompatible type "*list[str | int]"; expected "int"  [arg-type]
- parso/utils.py: note: In member "__gt__" of class "PythonVersionInfo":
- parso/utils.py:142:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/utils.py:142:5: error: Return type "None" of "__gt__" incompatible with return type "bool" in supertype "tuple"  [override]
- parso/utils.py:142:5: error: Method "__gt__" is not using @override but is overriding a method in class "builtins.tuple"  [explicit-override]
- parso/utils.py:143:23: error: Expression has type "Untyped"  [no-any-expr]
- parso/utils.py:146:13: error: No return value expected  [return-value]
- parso/utils.py:147:24: error: Expression has type "Untyped"  [no-any-expr]
- parso/utils.py:149:9: error: No return value expected  [return-value]
- parso/utils.py: note: In member "__eq__" of class "PythonVersionInfo":
- parso/utils.py:151:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/utils.py:151:5: error: Return type "None" of "__eq__" incompatible with return type "bool" in supertype "tuple"  [override]
- parso/utils.py:151:5: error: Return type "None" of "__eq__" incompatible with return type "bool" in supertype "object"  [override]
- parso/utils.py:151:5: error: Method "__eq__" is not using @override but is overriding a method in class "builtins.tuple"  [explicit-override]
- parso/utils.py:152:23: error: Expression has type "Untyped"  [no-any-expr]
- parso/utils.py:155:13: error: No return value expected  [return-value]
- parso/utils.py:156:24: error: Expression has type "Untyped"  [no-any-expr]
- parso/utils.py: note: In member "__ne__" of class "PythonVersionInfo":
- parso/utils.py:158:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/utils.py:158:5: error: Return type "None" of "__ne__" incompatible with return type "bool" in supertype "object"  [override]
- parso/utils.py:158:5: error: Method "__ne__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- parso/utils.py:159:9: error: No return value expected  [return-value]
- parso/utils.py:159:20: error: "__eq__" of "PythonVersionInfo" does not return a value (it only ever returns None)  [func-returns-value]
- parso/utils.py:159:32: error: Expression has type "Untyped"  [no-any-expr]
- parso/utils.py: note: In function "_parse_version":
- parso/utils.py:162:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/utils.py:163:72: error: Expression has type "Untyped"  [no-any-expr]
- parso/utils.py: note: In function "parse_version_string":
- parso/utils.py:191:8: error: Condition is always false  [redundant-expr]
- parso/utils.py:194:12: error: Call to incomplete function "_parse_version" in typed context  [no-untyped-call]
- parso/utils.py:194:12: note: Type is "def (version: Untyped) -> tuple[int, int, fallback=parso.utils.PythonVersionInfo]"
- parso/tree.py: note: In member "get_root_node" of class "NodeOrLeaf":
- parso/tree.py:48:9: error: No return value expected  [return-value]
- parso/tree.py: note: In member "get_next_sibling" of class "NodeOrLeaf":
- parso/tree.py:63:21: error: No return value expected  [return-value]
- parso/tree.py:63:28: error: Item "None" of "BaseNode | None" has no attribute "children"  [union-attr]
- parso/tree.py: note: In member "get_previous_sibling" of class "NodeOrLeaf":
- parso/tree.py:82:17: error: No return value expected  [return-value]
- parso/tree.py:82:24: error: Item "None" of "BaseNode | None" has no attribute "children"  [union-attr]
- parso/tree.py: note: In member "get_previous_leaf" of class "NodeOrLeaf":
- parso/tree.py:94:17: error: Item "None" of "BaseNode | None" has no attribute "children"  [union-attr]
- parso/tree.py:97:24: error: Incompatible types in assignment (expression has type "BaseNode | None", variable has type "NodeOrLeaf")  [assignment]
- parso/tree.py:104:15: error: Condition is always true  [redundant-expr]
- parso/tree.py:106:24: error: Item "NodeOrLeaf" of "NodeOrLeaf | Any (from error)" has no attribute "children"  [union-attr]
- parso/tree.py:106:24: error: "NodeOrLeaf" has no attribute "children"  [attr-defined]
- parso/tree.py:108:17: error: No return value expected  [return-value]
- parso/tree.py: note: In member "get_next_leaf" of class "NodeOrLeaf":
- parso/tree.py:120:17: error: Item "None" of "BaseNode | None" has no attribute "children"  [union-attr]
- parso/tree.py:123:24: error: Incompatible types in assignment (expression has type "BaseNode | None", variable has type "NodeOrLeaf")  [assignment]
- parso/tree.py:130:15: error: Condition is always true  [redundant-expr]
- parso/tree.py:132:24: error: Item "NodeOrLeaf" of "NodeOrLeaf | Any (from error)" has no attribute "children"  [union-attr]
- parso/tree.py:132:24: error: "NodeOrLeaf" has no attribute "children"  [attr-defined]
- parso/tree.py:134:17: error: No return value expected  [return-value]
- parso/tree.py: note: In member "dump" of class "NodeOrLeaf":
- parso/tree.py:243:14: error: Condition is always true  [redundant-expr]
- parso/tree.py: note: In function "_format_dump":
- parso/tree.py:255:31: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py: note: In member "start_pos" of class "Leaf":
- parso/tree.py:312:6: error: Method "start_pos" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py: note: In member "get_start_pos_of_prefix" of class "Leaf":
- parso/tree.py:321:5: error: Method "get_start_pos_of_prefix" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py:322:25: error: "get_previous_leaf" of "NodeOrLeaf" does not return a value (it only ever returns None)  [func-returns-value]
- parso/tree.py:323:12: error: Condition is always true  [redundant-expr]
- parso/tree.py:326:13: error: No return value expected  [return-value]
- parso/tree.py:327:9: error: Statement is unreachable  [unreachable]
- parso/tree.py: note: In member "get_first_leaf" of class "Leaf":
- parso/tree.py:329:5: error: Method "get_first_leaf" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py:330:9: error: No return value expected  [return-value]
- parso/tree.py: note: In member "get_last_leaf" of class "Leaf":
- parso/tree.py:332:5: error: Method "get_last_leaf" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py:333:9: error: No return value expected  [return-value]
- parso/tree.py: note: In member "get_code" of class "Leaf":
- parso/tree.py:335:5: error: Method "get_code" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py:337:13: error: No return value expected  [return-value]
- parso/tree.py:339:13: error: No return value expected  [return-value]
- parso/tree.py: note: In class "Leaf":
- parso/tree.py:342:5: error: Method "end_pos" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py: note: In member "__repr__" of class "Leaf":
- parso/tree.py:352:5: error: Return type "None" of "__repr__" incompatible with return type "str" in supertype "object"  [override]
- parso/tree.py:352:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- parso/tree.py:356:9: error: No return value expected  [return-value]
- parso/tree.py: note: In member "__init__" of class "TypedLeaf":
- parso/tree.py:362:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/tree.py:363:26: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:363:33: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:364:21: error: Usage of untyped name "type" in typed context  [no-untyped-usage]
- parso/tree.py: note: In class "BaseNode":
- parso/tree.py:388:5: error: Method "start_pos" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py: note: In member "get_start_pos_of_prefix" of class "BaseNode":
- parso/tree.py:391:5: error: Method "get_start_pos_of_prefix" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py: note: In class "BaseNode":
- parso/tree.py:395:5: error: Method "end_pos" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py: note: In member "_get_code_for_children" of class "BaseNode":
- parso/tree.py:398:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/tree.py:399:12: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:400:13: error: No return value expected  [return-value]
- parso/tree.py:400:27: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:400:28: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:400:50: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:402:13: error: Usage of untyped name "first" in typed context  [no-untyped-usage]
- parso/tree.py:402:21: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:403:13: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/tree.py:403:20: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:403:20: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/tree.py:403:35: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:403:36: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:403:58: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py: note: In member "get_code" of class "BaseNode":
- parso/tree.py:405:5: error: Method "get_code" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py:406:16: error: Call to incomplete function "_get_code_for_children" of "BaseNode" in typed context  [no-untyped-call]
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
- parso/tree.py: note: In member "get_leaf_for_position" of class "BaseNode":
- parso/tree.py:408:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/tree.py: note: In function "get_leaf_for_position":
- parso/tree.py:417:9: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/tree.py:418:16: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:418:16: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/tree.py:418:25: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:419:27: error: Expression has type "Any"  [no-any-expr]
- parso/tree.py:419:41: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:420:20: error: Expression type contains "Any" (has type "False | Any (unannotated)")  [no-any-expr]
- parso/tree.py:420:45: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:420:45: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/tree.py:420:56: error: Expression has type "Any"  [no-any-expr]
- parso/tree.py:425:21: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/tree.py:425:28: error: Expression has type "Any"  [no-any-expr]
- parso/tree.py:425:58: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:427:21: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/tree.py:427:28: error: Expression has type "Any"  [no-any-expr]
- parso/tree.py:429:25: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/tree.py:429:26: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:429:26: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/tree.py:429:34: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:431:16: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:431:16: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/tree.py:431:28: error: Expression has type "Any"  [no-any-expr]
- parso/tree.py:432:24: error: Call to incomplete function "binary_search" in typed context  [no-untyped-call]
- parso/tree.py:432:24: note: Type is "def (lower: Untyped, upper: Untyped) -> None"
- parso/tree.py:432:38: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:434:24: error: Call to incomplete function "binary_search" in typed context  [no-untyped-call]
- parso/tree.py:434:24: note: Type is "def (lower: Untyped, upper: Untyped) -> None"
- parso/tree.py:434:49: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py: note: In member "get_leaf_for_position" of class "BaseNode":
- parso/tree.py:436:17: error: Expression has type "Any (unannotated)"  [no-any-expr]
- parso/tree.py:436:27: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:438:16: error: Call to incomplete function "binary_search" in typed context  [no-untyped-call]
- parso/tree.py:438:16: note: Type is "def (lower: Untyped, upper: Untyped) -> None"
- parso/tree.py: note: In member "get_first_leaf" of class "BaseNode":
- parso/tree.py:440:5: error: Method "get_first_leaf" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py: note: In member "get_last_leaf" of class "BaseNode":
- parso/tree.py:443:5: error: Method "get_last_leaf" is not using @override but is overriding a method in class "parso.tree.NodeOrLeaf"  [explicit-override]
- parso/tree.py: note: In member "__repr__" of class "BaseNode":
- parso/tree.py:446:5: error: Return type "None" of "__repr__" incompatible with return type "str" in supertype "object"  [override]
- parso/tree.py:446:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- parso/tree.py:447:16: error: "get_code" of "BaseNode" does not return a value (it only ever returns None)  [func-returns-value]
- parso/tree.py:447:16: error: "None" has no attribute "replace"  [attr-defined]
- parso/tree.py:448:9: error: No return value expected  [return-value]
- parso/tree.py: note: In member "__init__" of class "Node":
- parso/tree.py:456:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/tree.py:457:26: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:458:21: error: Usage of untyped name "type" in typed context  [no-untyped-usage]
- parso/tree.py: note: In member "__repr__" of class "Node":
- parso/tree.py:460:5: error: Return type "None" of "__repr__" incompatible with return type "str" in supertype "object"  [override]
- parso/tree.py:460:5: error: Method "__repr__" is not using @override but is overriding a method in class "parso.tree.BaseNode"  [explicit-override]
- parso/tree.py:461:9: error: No return value expected  [return-value]
- parso/tree.py: note: In member "__init__" of class "ErrorLeaf":
- parso/tree.py:482:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/tree.py:483:26: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:483:33: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py:484:9: error: Usage of untyped name "token_type" in typed context  [no-untyped-usage]
- parso/tree.py:484:27: error: Expression has type "Untyped"  [no-any-expr]
- parso/tree.py: note: In member "__repr__" of class "ErrorLeaf":
- parso/tree.py:486:5: error: Return type "None" of "__repr__" incompatible with return type "str" in supertype "object"  [override]
- parso/tree.py:486:5: error: Method "__repr__" is not using @override but is overriding a method in class "parso.tree.Leaf"  [explicit-override]
- parso/tree.py:487:9: error: No return value expected  [return-value]
- parso/tree.py:488:13: error: Expression type contains "Any" (has type "(str, Untyped, str, (int, int))")  [no-any-expr]
- parso/tree.py:488:35: error: Expression has type "Untyped"  [no-any-expr]
- parso/python/tokenize.py:44:19: error: Missing type parameters for generic type "Pattern"  [type-arg]
- parso/python/tokenize.py: note: In class "TokenCollection":
- parso/python/tokenize.py:44:19: error: Missing type parameters for generic type "Pattern"  [type-arg]
- parso/python/tokenize.py: note: At top level:
- parso/python/tokenize.py:47:24: error: Missing type parameters for generic type "Pattern"  [type-arg]
- parso/python/tokenize.py: note: In class "TokenCollection":
- parso/python/tokenize.py:47:24: error: Missing type parameters for generic type "Pattern"  [type-arg]
- parso/python/tokenize.py: note: At top level:
- parso/python/tokenize.py:48:17: error: Missing type parameters for generic type "Pattern"  [type-arg]
- parso/python/tokenize.py: note: In class "TokenCollection":
- parso/python/tokenize.py:48:17: error: Missing type parameters for generic type "Pattern"  [type-arg]
- parso/python/tokenize.py: note: In function "group":
- parso/python/tokenize.py:58:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/python/tokenize.py:59:16: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- parso/python/tokenize.py:64:5: error: No return value expected  [return-value]
- parso/python/tokenize.py:64:29: error: Expression type contains "Any" (has type "tuple[Untyped, ...]")  [no-any-expr]
- parso/python/tokenize.py: note: In function "maybe":
- parso/python/tokenize.py:67:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/python/tokenize.py:68:5: error: Returning Any from function declared to return "None"  [no-any-return]
- parso/python/tokenize.py:68:12: error: Call to incomplete function "group" in typed context  [no-untyped-call]
- parso/python/tokenize.py:68:12: note: Type is "def (*choices: Untyped, capture: bool =, **kwargs: Untyped) -> None"
- parso/python/tokenize.py:68:12: error: "group" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:68:12: error: Unsupported left operand type for + ("None")  [operator]
- parso/python/tokenize.py:68:12: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-operator for more info
- parso/python/tokenize.py:68:19: error: Expression type contains "Any" (has type "tuple[Untyped, ...]")  [no-any-expr]
- parso/python/tokenize.py: note: In function "_all_string_prefixes":
- parso/python/tokenize.py:73:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/python/tokenize.py:73:5: error: The return type of a generator function should be "Generator" or one of its supertypes  [misc]
- parso/python/tokenize.py:74:9: error: Expression type contains "Any" (has type "tuple[Any, ...]")  [no-any-expr]
- parso/python/tokenize.py:74:18: error: Expression type contains "Any" (has type "product[tuple[Any, ...]]")  [no-any-expr]
- parso/python/tokenize.py:74:38: error: Expression has type "Untyped"  [no-any-expr]
- parso/python/tokenize.py:74:38: error: Expression type contains "Any" (has type "list[(Untyped, Untyped)]")  [no-any-expr]
- parso/python/tokenize.py:74:39: error: Expression type contains "Any" (has type "(Untyped, Untyped)")  [no-any-expr]
- parso/python/tokenize.py:74:40: error: Expression has type "Untyped"  [no-any-expr]
- parso/python/tokenize.py:74:43: error: Expression has type "Untyped"  [no-any-expr]
- parso/python/tokenize.py:74:63: error: Expression has type "Untyped"  [no-any-expr]
- parso/python/tokenize.py:75:27: error: Expression type contains "Any" (has type "tuple[Any, ...]")  [no-any-expr]
- parso/python/tokenize.py:90:9: error: No return value expected  [return-value]
- parso/python/tokenize.py:97:27: error: Call to incomplete function "different_case_versions" in typed context  [no-untyped-call]
- parso/python/tokenize.py:97:27: note: Type is "def (prefix: Untyped) -> None"
- parso/python/tokenize.py:97:27: error: "different_case_versions" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:97:27: error: Argument 1 to "update" of "set" has incompatible type "None"; expected "Iterable[str]"  [arg-type]
- parso/python/tokenize.py:98:5: error: No return value expected  [return-value]
- parso/python/tokenize.py: note: In function "_compile":
- parso/python/tokenize.py:101:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/python/tokenize.py:102:5: error: No return value expected  [return-value]
- parso/python/tokenize.py:102:12: error: Expression type contains "Any" (has type "Pattern[Any (unannotated)]")  [no-any-expr]
- parso/python/tokenize.py:102:23: error: Expression has type "Untyped"  [no-any-expr]
- parso/python/tokenize.py: note: In function "_get_token_collection":
- parso/python/tokenize.py:105:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/python/tokenize.py:107:9: error: No return value expected  [return-value]
- parso/python/tokenize.py:107:16: error: Expression type contains "Any" (has type "dict[PythonVersionInfo, TokenCollection]")  [no-any-expr]
- parso/python/tokenize.py:107:16: error: Expression type contains "Any" (has type "TokenCollection")  [no-any-expr]
- parso/python/tokenize.py:107:40: error: Expression type contains "Any" (has type "tuple[Any (unannotated), ...]")  [no-any-expr]
- parso/python/tokenize.py:107:40: error: Invalid index type "tuple[Any (unannotated), ...]" for "dict[PythonVersionInfo, TokenCollection]"; expected type "PythonVersionInfo"  [index]
- parso/python/tokenize.py:107:40: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-index for more info
- parso/python/tokenize.py:107:46: error: Expression has type "Untyped"  [no-any-expr]
- parso/python/tokenize.py:109:9: error: Expression type contains "Any" (has type "dict[PythonVersionInfo, TokenCollection]")  [no-any-expr]
- parso/python/tokenize.py:109:9: error: Incompatible types in assignment (expression has type "None", target has type "TokenCollection")  [assignment]
- parso/python/tokenize.py:109:9: error: Untyped indexed-assignment to "_token_collection_cache" in typed context  [no-untyped-usage]
- parso/python/tokenize.py:109:33: error: Expression type contains "Any" (has type "tuple[Any (unannotated), ...]")  [no-any-expr]
- parso/python/tokenize.py:109:33: error: Invalid index type "tuple[Any (unannotated), ...]" for "dict[PythonVersionInfo, TokenCollection]"; expected type "PythonVersionInfo"  [index]
- parso/python/tokenize.py:109:39: error: Expression has type "Untyped"  [no-any-expr]
- parso/python/tokenize.py:110:13: error: Call to incomplete function "_create_token_collection" in typed context  [no-untyped-call]
- parso/python/tokenize.py:110:13: note: Type is "def (version_info: Untyped) -> None"
- parso/python/tokenize.py:110:13: error: "_create_token_collection" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:110:38: error: Expression has type "Untyped"  [no-any-expr]
- parso/python/tokenize.py: note: At top level:
- parso/python/tokenize.py:115:1: error: Need type annotation for "fstring_string_single_line" (hint: "fstring_string_single_line: <type> | None = ...")  [var-annotated]
- parso/python/tokenize.py:115:30: error: Call to incomplete function "_compile" in typed context  [no-untyped-call]
- parso/python/tokenize.py:115:30: note: Type is "def (expr: Untyped) -> None"
- parso/python/tokenize.py:115:30: error: "_compile" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:119:1: error: Need type annotation for "fstring_string_multi_line" (hint: "fstring_string_multi_line: <type> | None = ...")  [var-annotated]
- parso/python/tokenize.py:119:29: error: Call to incomplete function "_compile" in typed context  [no-untyped-call]
- parso/python/tokenize.py:119:29: note: Type is "def (expr: Untyped) -> None"
- parso/python/tokenize.py:119:29: error: "_compile" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:122:1: error: Need type annotation for "fstring_format_spec_single_line" (hint: "fstring_format_spec_single_line: <type> | None = ...")  [var-annotated]
- parso/python/tokenize.py:122:35: error: Call to incomplete function "_compile" in typed context  [no-untyped-call]
- parso/python/tokenize.py:122:35: note: Type is "def (expr: Untyped) -> None"
- parso/python/tokenize.py:122:35: error: "_compile" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:123:1: error: Need type annotation for "fstring_format_spec_multi_line" (hint: "fstring_format_spec_multi_line: <type> | None = ...")  [var-annotated]
- parso/python/tokenize.py:123:34: error: Call to incomplete function "_compile" in typed context  [no-untyped-call]
- parso/python/tokenize.py:123:34: note: Type is "def (expr: Untyped) -> None"
- parso/python/tokenize.py:123:34: error: "_compile" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py: note: In function "_create_token_collection":
- parso/python/tokenize.py:126:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- parso/python/tokenize.py:130:18: error: Call to incomplete function "_compile" in typed context  [no-untyped-call]
- parso/python/tokenize.py:130:18: note: Type is "def (expr: Untyped) -> None"
- parso/python/tokenize.py:130:18: error: "_compile" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:138:17: error: Call to incomplete function "group" in typed context  [no-untyped-call]
- parso/python/tokenize.py:138:17: note: Type is "def (*choices: Untyped, capture: bool =, **kwargs: Untyped) -> None"
- parso/python/tokenize.py:138:17: error: "group" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:140:18: error: Call to incomplete function "group" in typed context  [no-untyped-call]
- parso/python/tokenize.py:140:18: note: Type is "def (*choices: Untyped, capture: bool =, **kwargs: Untyped) -> None"
- parso/python/tokenize.py:140:18: error: "group" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:140:18: error: Unsupported left operand type for + ("None")  [operator]
- parso/python/tokenize.py:141:50: error: Call to incomplete function "maybe" in typed context  [no-untyped-call]
- parso/python/tokenize.py:141:50: note: Type is "def (*choices: Untyped) -> None"
- parso/python/tokenize.py:141:50: error: "maybe" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:143:19: error: Call to incomplete function "group" in typed context  [no-untyped-call]
- parso/python/tokenize.py:143:19: note: Type is "def (*choices: Untyped, capture: bool =, **kwargs: Untyped) -> None"
- parso/python/tokenize.py:143:19: error: "group" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:144:18: error: Call to incomplete function "group" in typed context  [no-untyped-call]
- parso/python/tokenize.py:144:18: note: Type is "def (*choices: Untyped, capture: bool =, **kwargs: Untyped) -> None"
- parso/python/tokenize.py:144:18: error: "group" does not return a value (it only ever returns None)  [func-returns-value]
- parso/python/tokenize.py:144:50: error: Unsupported left operand type for + ("None")  [operator]

... (truncated 5425 lines) ...

aioredis (https://github.com/aio-libs/aioredis)
+ Traceback (most recent call last):
+   File "/tmp/mypy_primer/new_mypy/venv/bin/mypy", line 8, in <module>
+     sys.exit(console_entry())
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/__main__.py", line 15, in console_entry
+     main()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 103, in main
+     res, messages, blockers = run_build(sources, options, fscache, t0, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 210, in run_build
+     res = build.build(sources, options, None, flush_errors, fscache, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 196, in build
+     result = _build(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 273, in _build
+     graph = dispatch(sources, manager, stdout)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3083, in dispatch
+     process_graph(graph, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3483, in process_graph
+     process_stale_scc(graph, scc, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3578, in process_stale_scc
+     mypy.semanal_main.semantic_analysis_for_scc(graph, scc, manager.errors)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_main.py", line 97, in semantic_analysis_for_scc
+     apply_semantic_analyzer_patches(patches)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 7053, in apply_semantic_analyzer_patches
+     patch_func()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 2400, in <lambda>
+     self.schedule_patch(PRIORITY_FALLBACKS, lambda: calculate_tuple_fallback(base))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_shared.py", line 307, in calculate_tuple_fallback
+     fallback.args = (join.join_type_list(items),)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 894, in join_type_list
+     joined = join_types(joined, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 284, in join_types
+     r = _union_join(s, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 250, in _union_join
+     return mypy.typeops.make_simplified_union([l, r])
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 466, in make_simplified_union
+     simplified_set: Sequence[Type] = _remove_redundant_union_items(items, keep_erased)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 552, in _remove_redundant_union_items
+     if is_proper_subtype(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 226, in is_proper_subtype
+     return _is_subtype(left, right, subtype_context, proper_subtype=True)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 368, in _is_subtype
+     return left.accept(SubtypeVisitor(orig_right, subtype_context, proper_subtype))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/types.py", line 1605, in accept
+     return visitor.visit_instance(self)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 615, in visit_instance
+     if right.type.is_protocol and is_protocol_implementation(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1169, in is_protocol_implementation
+     supertype = get_proper_type(find_member(member, right, left))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1255, in find_member
+     return find_node_type(method, itype, subtype, class_obj=class_obj)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1381, in find_node_type
+     signature = bind_self(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 357, in bind_self
+     assert METHOD_TYPE
+ AssertionError
- aioredis/utils.py: note: In function "from_url":
- aioredis/utils.py:19:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/utils.py:19:1: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-def for more info
- aioredis/utils.py:28:12: error: Call to incomplete function "from_url" of "Redis" in typed context  [no-untyped-call]
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
- aioredis/utils.py:28:12: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-call for more info
- aioredis/utils.py:28:27: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/utils.py:28:34: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/utils.py:28:34: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-expr for more info
- aioredis/utils.py: note: In member "__aexit__" of class "pipeline":
- aioredis/utils.py:38:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/utils.py: note: At top level:
- aioredis/utils.py:45: error: Unused "type: ignore" comment, use narrower [overload-overlap] instead of [misc] code  [unused-ignore]
- aioredis/connection.py:68:37: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:71:13: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:72:35: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py: note: In member "encode" of class "Encoder":
- aioredis/connection.py:134:12: error: Condition is always false  [redundant-expr]
- aioredis/connection.py:134:12: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-redundant-expr for more info
- aioredis/connection.py: note: In member "parse_error" of class "BaseParser":
- aioredis/connection.py:206:13: error: Returning Any from function declared to return "ResponseError"  [no-any-return]
- aioredis/connection.py:206:13: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-return for more info
- aioredis/connection.py:206:20: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py: note: In class "SocketBuffer":
- aioredis/connection.py:248:5: error: Property is missing a type annotation  [no-untyped-def]
- aioredis/connection.py: note: In member "length" of class "SocketBuffer":
- aioredis/connection.py:249:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "_read_from_socket" of class "SocketBuffer":
- aioredis/connection.py:266:28: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:269:20: error: Left operand of "and" is always true  [redundant-expr]
- aioredis/connection.py:283:16: error: Exception type must be derived from BaseException (or be a tuple of exception classes)  [misc]
- aioredis/connection.py: note: In member "read" of class "SocketBuffer":
- aioredis/connection.py:301:21: error: Unsupported operand types for > ("int" and "None")  [operator]
- aioredis/connection.py:301:21: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-operator for more info
- aioredis/connection.py:302:51: error: Unsupported operand types for - ("int" and "None")  [operator]
- aioredis/connection.py: note: In member "on_connect" of class "PythonParser":
- aioredis/connection.py:373:5: error: Method "on_connect" is not using @override but is overriding a method in class "aioredis.connection.BaseParser"  [explicit-override]
- aioredis/connection.py:373:5: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-explicit-override for more info
- aioredis/connection.py: note: In member "on_disconnect" of class "PythonParser":
- aioredis/connection.py:384:5: error: Method "on_disconnect" is not using @override but is overriding a method in class "aioredis.connection.BaseParser"  [explicit-override]
- aioredis/connection.py: note: In member "can_read" of class "PythonParser":
- aioredis/connection.py:393:5: error: Return type "Coroutine[Any, Any, None]" of "can_read" incompatible with return type "Coroutine[Any, Any, bool]" in supertype "BaseParser"  [override]
- aioredis/connection.py:393:5: error: Method "can_read" is not using @override but is overriding a method in class "aioredis.connection.BaseParser"  [explicit-override]
- aioredis/connection.py:394:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "read_response" of class "PythonParser":
- aioredis/connection.py:396:5: error: Method "read_response" is not using @override but is overriding a method in class "aioredis.connection.BaseParser"  [explicit-override]
- aioredis/connection.py:402:9: error: Explicit "Any" is not allowed  [no-any-explicit]
- aioredis/connection.py:410:24: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:411:38: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:426:28: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:429:26: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:435:26: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:438:24: error: Expression type contains "Any" (has type "list[Any]")  [no-any-expr]
- aioredis/connection.py:439:23: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:441:9: error: Returning Any from function declared to return "bytes | memoryview | str | int | float | ResponseError | None"  [no-any-return]
- aioredis/connection.py:441:16: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py: note: In member "__init__" of class "HiredisParser":
- aioredis/connection.py:455:9: error: Type of variable becomes "Any (from unimported type) | None" due to an unfollowed import  [no-any-unimported]
- aioredis/connection.py:455:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-unimported for more info
- aioredis/connection.py: note: In member "on_connect" of class "HiredisParser":
- aioredis/connection.py:458:5: error: Method "on_connect" is not using @override but is overriding a method in class "aioredis.connection.BaseParser"  [explicit-override]
- aioredis/connection.py:468:24: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py: note: In member "on_disconnect" of class "HiredisParser":
- aioredis/connection.py:472:5: error: Method "on_disconnect" is not using @override but is overriding a method in class "aioredis.connection.BaseParser"  [explicit-override]
- aioredis/connection.py: note: In member "can_read" of class "HiredisParser":
- aioredis/connection.py:477:5: error: Return type "Coroutine[Any, Any, None]" of "can_read" incompatible with return type "Coroutine[Any, Any, bool]" in supertype "BaseParser"  [override]
- aioredis/connection.py:477:5: error: Method "can_read" is not using @override but is overriding a method in class "aioredis.connection.BaseParser"  [explicit-override]
- aioredis/connection.py:478:16: error: Expression type contains "Any" (has type "Any (from unimported type) | None")  [no-any-expr]
- aioredis/connection.py:482:35: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:485:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "read_from_socket" of class "HiredisParser":
- aioredis/connection.py:492:36: error: Expression type contains "Any" (has type "Any (from unimported type) | None")  [no-any-expr]
- aioredis/connection.py:497:24: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:499:16: error: Left operand of "or" is always false  [redundant-expr]
- aioredis/connection.py:501:13: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:504:13: error: No return value expected  [return-value]
- aioredis/connection.py:510:13: error: No return value expected  [return-value]
- aioredis/connection.py:511:16: error: Exception type must be derived from BaseException (or be a tuple of exception classes)  [misc]
- aioredis/connection.py:518:17: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "read_response" of class "HiredisParser":
- aioredis/connection.py:521:5: error: Method "read_response" is not using @override but is overriding a method in class "aioredis.connection.BaseParser"  [explicit-override]
- aioredis/connection.py:522:36: error: Expression type contains "Any" (has type "Any (from unimported type) | None")  [no-any-expr]
- aioredis/connection.py:535:20: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:536:15: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:538:24: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:543:23: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:546:24: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py: note: In member "__repr__" of class "Connection":
- aioredis/connection.py:655:5: error: Return type "None" of "__repr__" incompatible with return type "str" in supertype "object"  [override]
- aioredis/connection.py:655:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- aioredis/connection.py:656:54: error: "repr_pieces" of "Connection" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:656:54: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-func-returns-value for more info
- aioredis/connection.py:656:54: error: "None" has no attribute "__iter__" (not iterable)  [attr-defined]
- aioredis/connection.py:657:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "repr_pieces" of class "Connection":
- aioredis/connection.py:663:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "__del__" of class "Connection":
- aioredis/connection.py:667:16: error: Condition is always false  [redundant-expr]
- aioredis/connection.py:668:17: error: Statement is unreachable  [unreachable]
- aioredis/connection.py:668:17: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-unreachable for more info
- aioredis/connection.py: note: In class "Connection":
- aioredis/connection.py:678:5: error: Property is missing a type annotation  [no-untyped-def]
- aioredis/connection.py: note: In member "is_connected" of class "Connection":
- aioredis/connection.py:679:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "register_connect_callback" of class "Connection":
- aioredis/connection.py:681:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:682:40: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py: note: In member "connect" of class "Connection":
- aioredis/connection.py:689:12: error: Condition is always false  [redundant-expr]
- aioredis/connection.py:690:13: error: Statement is unreachable  [unreachable]
- aioredis/connection.py:698:35: error: Call to incomplete function "_error_message" of "Connection" in typed context  [no-untyped-call]
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
- aioredis/connection.py:698:35: error: "_error_message" of "Connection" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py: note: In member "_connect" of class "Connection":
- aioredis/connection.py:718:20: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:726:16: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:727:12: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:728:13: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:732:21: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:734:25: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py: note: In member "_error_message" of class "Connection":
- aioredis/connection.py:742:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:745:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:746:13: error: No return value expected  [return-value]
- aioredis/connection.py:746:20: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:746:68: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:748:13: error: No return value expected  [return-value]
- aioredis/connection.py:749:17: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:749:26: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:750:20: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py: note: In member "on_connect" of class "Connection":
- aioredis/connection.py:767:19: error: Call to incomplete function "send_command" of "Connection" in typed context  [no-untyped-call]
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:770:33: error: Function does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:776:23: error: Call to incomplete function "send_command" of "Connection" in typed context  [no-untyped-call]
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:777:33: error: Function does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:779:16: error: "str_if_bytes" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:784:19: error: Call to incomplete function "send_command" of "Connection" in typed context  [no-untyped-call]
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:785:16: error: "str_if_bytes" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:785:29: error: Function does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:790:19: error: Call to incomplete function "send_command" of "Connection" in typed context  [no-untyped-call]
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:791:16: error: "str_if_bytes" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:791:29: error: Function does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py: note: In member "disconnect" of class "Connection":
- aioredis/connection.py:797:24: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:799:20: error: Condition is always true  [redundant-expr]
- aioredis/connection.py:801:17: error: Statement is unreachable  [unreachable]
- aioredis/connection.py: note: At top level:
- aioredis/connection.py:803: error: Unused "type: ignore" comment  [unused-ignore]
- aioredis/connection.py:806: error: Unused "type: ignore" comment  [unused-ignore]
- aioredis/connection.py: note: In member "disconnect" of class "Connection":
- aioredis/connection.py:813:17: error: The string for "None" isn't helpful in a user-facing or semantic string  [helpful-string]
- aioredis/connection.py:813:17: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-helpful-string for more info
- aioredis/connection.py: note: In member "check_health" of class "Connection":
- aioredis/connection.py:823:23: error: Call to incomplete function "send_command" of "Connection" in typed context  [no-untyped-call]
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:824:20: error: "str_if_bytes" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:824:33: error: Function does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:829:27: error: Call to incomplete function "send_command" of "Connection" in typed context  [no-untyped-call]
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:830:24: error: "str_if_bytes" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:830:37: error: Function does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py: note: In member "send_packed_command" of class "Connection":
- aioredis/connection.py:869:20: error: Expression type contains "Any" (has type "tuple[Any, ...]")  [no-any-expr]
- aioredis/connection.py:870:45: error: Expression type contains "Any" (has type "(Any,)")  [no-any-expr]
- aioredis/connection.py:870:45: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:872:26: error: Expression type contains "Any" (has type "tuple[Any, ...]")  [no-any-expr]
- aioredis/connection.py:873:26: error: Expression type contains "Any" (has type "tuple[Any, ...]")  [no-any-expr]
- aioredis/connection.py:873:26: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py:875:17: error: Expression has type "Any"  [no-any-expr]
- aioredis/connection.py: note: In member "send_command" of class "Connection":
- aioredis/connection.py:881:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:883:12: error: Condition is always true  [redundant-expr]
- aioredis/connection.py:886:32: error: Expression type contains "Any" (has type "tuple[Untyped, ...]")  [no-any-expr]
- aioredis/connection.py:886:52: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py:886:52: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py: note: In member "can_read" of class "Connection":
- aioredis/connection.py:891:12: error: Condition is always true  [redundant-expr]
- aioredis/connection.py:893:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "read_response" of class "Connection":
- aioredis/connection.py:899:28: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:907:17: error: Expression type contains "Any" (has type "tuple[Any, ...]")  [no-any-expr]
- aioredis/connection.py:920:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "pack_command" of class "Connection":
- aioredis/connection.py:933:14: error: Unsupported right operand type for in ("bytes | memoryview | int")  [operator]
- aioredis/connection.py:934:26: error: Item "memoryview" of "bytes | memoryview | int" has no attribute "split"  [union-attr]
- aioredis/connection.py:934:26: error: Item "int" of "bytes | memoryview | int" has no attribute "split"  [union-attr]
- aioredis/connection.py:934:26: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-union-attr for more info
- aioredis/connection.py: note: In member "__init__" of class "SSLConnection":
- aioredis/connection.py:999:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:1008:28: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py: note: In class "SSLConnection":
- aioredis/connection.py:1018:5: error: Property is missing a type annotation  [no-untyped-def]
- aioredis/connection.py: note: In member "keyfile" of class "SSLConnection":
- aioredis/connection.py:1019:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In class "SSLConnection":
- aioredis/connection.py:1022:5: error: Property is missing a type annotation  [no-untyped-def]
- aioredis/connection.py: note: In member "certfile" of class "SSLConnection":
- aioredis/connection.py:1023:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In class "SSLConnection":
- aioredis/connection.py:1026:5: error: Property is missing a type annotation  [no-untyped-def]
- aioredis/connection.py: note: In member "cert_reqs" of class "SSLConnection":
- aioredis/connection.py:1027:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In class "SSLConnection":
- aioredis/connection.py:1030:5: error: Property is missing a type annotation  [no-untyped-def]
- aioredis/connection.py: note: In member "ca_certs" of class "SSLConnection":
- aioredis/connection.py:1031:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In class "SSLConnection":
- aioredis/connection.py:1034:5: error: Property is missing a type annotation  [no-untyped-def]
- aioredis/connection.py: note: In member "check_hostname" of class "SSLConnection":
- aioredis/connection.py:1035:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "__init__" of class "RedisSSLContext":
- aioredis/connection.py:1060:14: error: Condition is always true  [redundant-expr]
- aioredis/connection.py: note: In member "__init__" of class "UnixDomainSocketConnection":
- aioredis/connection.py:1089:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:1111:28: error: Usage of untyped name "client_name" in typed context  [no-untyped-usage]
- aioredis/connection.py:1111:28: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-usage for more info
- aioredis/connection.py: note: In member "repr_pieces" of class "UnixDomainSocketConnection":
- aioredis/connection.py:1127:5: error: Return type "Iterable[(str, str | int)]" of "repr_pieces" incompatible with return type "None" in supertype "Connection"  [override]
- aioredis/connection.py:1127:5: error: Method "repr_pieces" is not using @override but is overriding a method in class "aioredis.connection.Connection"  [explicit-override]
- aioredis/connection.py: note: In member "_connect" of class "UnixDomainSocketConnection":
- aioredis/connection.py:1136:5: error: Method "_connect" is not using @override but is overriding a method in class "aioredis.connection.Connection"  [explicit-override]
- aioredis/connection.py:1137:20: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py: note: In member "_error_message" of class "UnixDomainSocketConnection":
- aioredis/connection.py:1143:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:1143:5: error: Method "_error_message" is not using @override but is overriding a method in class "aioredis.connection.Connection"  [explicit-override]
- aioredis/connection.py:1146:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1147:13: error: No return value expected  [return-value]
- aioredis/connection.py:1147:20: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1147:69: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1149:13: error: No return value expected  [return-value]
- aioredis/connection.py:1150:17: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1150:26: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1151:33: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py: note: In function "to_bool":
- aioredis/connection.py:1158:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:1159:8: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1159:8: error: Expression type contains "Any" (has type "True | Any (unannotated)")  [no-any-expr]
- aioredis/connection.py:1159:25: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1159:25: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/connection.py:1161:19: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1163:17: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py: note: At top level:
- aioredis/connection.py:1166:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- aioredis/connection.py:1167:5: error: Expression type contains "Any" (has type "dict[str, (...) -> object]")  [no-any-expr]
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py: note: In function "parse_url":
- aioredis/connection.py:1197:22: error: Expression type contains "Any" (has type "Mapping[str, (...) -> object]")  [no-any-expr]
- aioredis/connection.py:1197:22: error: Expression type contains "Any" (has type "(...) -> object | None")  [no-any-expr]
- aioredis/connection.py:1198:16: error: Expression type contains "Any" (has type "(...) -> object | None")  [no-any-expr]
- aioredis/connection.py: note: At top level:
- aioredis/connection.py:1201: error: Unused "type: ignore" comment  [unused-ignore]
- aioredis/connection.py: note: In function "parse_url":
- aioredis/connection.py:1201:28: error: TypedDict key must be a string literal; expected one of ("username", "password", "connection_class", "host", "port", ...)  [literal-required]
- aioredis/connection.py:1201:28: note: Error code changed to literal-required; "type: ignore" comment may be out of date
- aioredis/connection.py:1201:28: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-literal-required for more info
- aioredis/connection.py: note: At top level:
- aioredis/connection.py:1205: error: Unused "type: ignore" comment  [unused-ignore]
- aioredis/connection.py: note: In function "parse_url":
- aioredis/connection.py:1205:24: error: TypedDict key must be a string literal; expected one of ("username", "password", "connection_class", "host", "port", ...)  [literal-required]
- aioredis/connection.py:1205:24: note: Error code changed to literal-required; "type: ignore" comment may be out of date
- aioredis/connection.py: note: In member "from_url" of class "ConnectionPool":
- aioredis/connection.py:1261:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py: note: In class "ConnectionPool":
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1261:5: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-decorated for more info
- aioredis/connection.py: note: In member "from_url" of class "ConnectionPool":
- aioredis/connection.py:1301:9: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py:1302:22: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py: note: In member "__init__" of class "ConnectionPool":
- aioredis/connection.py:1304:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:1311:12: error: Left operand of "or" is always false  [redundant-expr]
- aioredis/connection.py:1315:34: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py:1332:9: error: Usage of untyped name "encoder_class" in typed context  [no-untyped-usage]
- aioredis/connection.py:1332:30: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py:1332:30: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py: note: In member "__repr__" of class "ConnectionPool":
- aioredis/connection.py:1334:5: error: Return type "None" of "__repr__" incompatible with return type "str" in supertype "object"  [override]
- aioredis/connection.py:1334:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- aioredis/connection.py:1335:9: error: No return value expected  [return-value]
- aioredis/connection.py:1337:41: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py: note: In member "get_connection" of class "ConnectionPool":
- aioredis/connection.py:1404:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:1411:30: error: "make_connection" of "ConnectionPool" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:1411:30: error: Incompatible types in assignment (expression has type "None", variable has type "Connection")  [assignment]
- aioredis/connection.py:1422:20: error: Function does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:1422:20: error: Condition is always false  [redundant-expr]
- aioredis/connection.py:1427:20: error: Function does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:1427:20: error: Condition is always false  [redundant-expr]
- aioredis/connection.py:1435:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "get_encoder" of class "ConnectionPool":
- aioredis/connection.py:1439:18: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py:1440:9: error: Returning Any from function declared to return "None"  [no-any-return]
- aioredis/connection.py:1440:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1441:22: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py:1441:22: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1442:29: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py:1442:29: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1443:30: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py:1443:30: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py: note: In member "make_connection" of class "ConnectionPool":
- aioredis/connection.py:1451:9: error: No return value expected  [return-value]
- aioredis/connection.py:1451:40: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py: note: In member "release" of class "ConnectionPool":
- aioredis/connection.py:1464:16: error: "owns_connection" of "ConnectionPool" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:1464:16: error: Condition is always false  [redundant-expr]
- aioredis/connection.py:1465:17: error: Statement is unreachable  [unreachable]
- aioredis/connection.py: note: In member "owns_connection" of class "ConnectionPool":
- aioredis/connection.py:1475:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "disconnect" of class "ConnectionPool":
- aioredis/connection.py:1494:61: error: Item "list[Connection]" of "list[Connection] | Iterator[Connection]" has no attribute "__next__"  [union-attr]
- aioredis/connection.py: note: In member "__init__" of class "BlockingConnectionPool":
- aioredis/connection.py:1536:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:1541: error: Missing type parameters for generic type "Queue"  [type-arg]
- aioredis/connection.py:1545:28: error: Expression type contains "Any" (has type "type[Queue[Untyped]]")  [no-any-expr]
- aioredis/connection.py:1551:15: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py: note: In member "reset" of class "BlockingConnectionPool":
- aioredis/connection.py:1554:5: error: Method "reset" is not using @override but is overriding a method in class "aioredis.connection.ConnectionPool"  [explicit-override]
- aioredis/connection.py:1556:21: error: Expression type contains "Any" (has type "Queue[Untyped]")  [no-any-expr]
- aioredis/connection.py:1559:17: error: Expression type contains "Any" (has type "Queue[Untyped]")  [no-any-expr]
- aioredis/connection.py:1559:17: error: Call to incomplete function "put_nowait" of "Queue" in typed context  [no-untyped-call]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
- aioredis/connection.py: note: In member "make_connection" of class "BlockingConnectionPool":
- aioredis/connection.py:1578:5: error: Method "make_connection" is not using @override but is overriding a method in class "aioredis.connection.ConnectionPool"  [explicit-override]
- aioredis/connection.py:1580:46: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/connection.py:1582:9: error: No return value expected  [return-value]
- aioredis/connection.py: note: In member "get_connection" of class "BlockingConnectionPool":
- aioredis/connection.py:1584:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/connection.py:1584:5: error: Method "get_connection" is not using @override but is overriding a method in class "aioredis.connection.ConnectionPool"  [explicit-override]
- aioredis/connection.py:1603:24: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- aioredis/connection.py:1604:30: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1604:36: error: Expression type contains "Any" (has type "Queue[Untyped]")  [no-any-expr]
- aioredis/connection.py:1604:36: error: Call to incomplete function "get" of "Queue" in typed context  [no-untyped-call]
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1604:36: error: Expression type contains "Any" (has type "Coroutine[Any, Any, Untyped]")  [no-any-expr]
- aioredis/connection.py:1612:12: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1613:26: error: "make_connection" of "BlockingConnectionPool" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:1617:19: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- aioredis/connection.py:1617:19: error: Item "None" of "Untyped | None" has no attribute "connect"  [union-attr]
- aioredis/connection.py:1617:19: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1623:20: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/connection.py:1623:26: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- aioredis/connection.py:1623:26: error: Item "None" of "Untyped | None" has no attribute "can_read"  [union-attr]
- aioredis/connection.py:1623:26: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1626:23: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- aioredis/connection.py:1626:23: error: Item "None" of "Untyped | None" has no attribute "disconnect"  [union-attr]
- aioredis/connection.py:1626:23: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1627:23: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- aioredis/connection.py:1627:23: error: Item "None" of "Untyped | None" has no attribute "connect"  [union-attr]
- aioredis/connection.py:1627:23: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1628:20: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/connection.py:1628:26: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- aioredis/connection.py:1628:26: error: Item "None" of "Untyped | None" has no attribute "can_read"  [union-attr]
- aioredis/connection.py:1628:26: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/connection.py:1632:32: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- aioredis/connection.py:1632:32: error: Argument 1 to "release" of "BlockingConnectionPool" has incompatible type "Untyped | None"; expected "Connection"  [arg-type]
- aioredis/connection.py:1635:9: error: No return value expected  [return-value]
- aioredis/connection.py:1635:16: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- aioredis/connection.py: note: In member "release" of class "BlockingConnectionPool":
- aioredis/connection.py:1637:5: error: Method "release" is not using @override but is overriding a method in class "aioredis.connection.ConnectionPool"  [explicit-override]
- aioredis/connection.py:1641:12: error: Condition is always true  [redundant-expr]
- aioredis/connection.py:1641:16: error: "owns_connection" of "ConnectionPool" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/connection.py:1647:13: error: Expression type contains "Any" (has type "Queue[Untyped]")  [no-any-expr]
- aioredis/connection.py:1647:13: error: Call to incomplete function "put_nowait" of "Queue" in typed context  [no-untyped-call]
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
- aioredis/connection.py:1651:9: error: Statement is unreachable  [unreachable]
- aioredis/connection.py: note: In member "disconnect" of class "BlockingConnectionPool":
- aioredis/connection.py:1658:5: error: Method "disconnect" is not using @override but is overriding a method in class "aioredis.connection.ConnectionPool"  [explicit-override]
- aioredis/client.py:59:8: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:60:12: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:61:10: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:63:12: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:64:10: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:65:13: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:67:15: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:76:15: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:94: error: Unused "type: ignore" comment  [unused-ignore]
- aioredis/client.py: note: In function "timestamp_to_datetime":
- aioredis/client.py:109:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:111:12: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:114:9: error: Usage of untyped name "response" in typed context  [no-untyped-usage]
- aioredis/client.py:114:24: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:117:5: error: No return value expected  [return-value]
- aioredis/client.py:117:44: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "string_keys_to_dict":
- aioredis/client.py:120:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:121:5: error: No return value expected  [return-value]
- aioredis/client.py:121:26: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:121:46: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: At top level:
- aioredis/client.py:124:27: error: Missing type parameters for generic type "dict"  [type-arg]
- aioredis/client.py:124:27: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-type-arg for more info
- aioredis/client.py: note: In member "__init__" of class "CaseInsensitiveDict":
- aioredis/client.py:127:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:128:9: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:128:9: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py:128:21: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:129:13: error: Untyped indexed-assignment to "self" in typed context  [no-untyped-usage]
- aioredis/client.py:129:18: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py:129:31: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py: note: In member "__contains__" of class "CaseInsensitiveDict":
- aioredis/client.py:131:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:131:5: error: Return type "None" of "__contains__" incompatible with return type "bool" in supertype "Mapping"  [override]
- aioredis/client.py:131:5: error: Return type "None" of "__contains__" incompatible with return type "bool" in supertype "Container"  [override]
- aioredis/client.py:131:5: error: Method "__contains__" is not using @override but is overriding a method in class "typing.Mapping"  [explicit-override]
- aioredis/client.py:132:9: error: No return value expected  [return-value]
- aioredis/client.py:132:37: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In member "__delitem__" of class "CaseInsensitiveDict":
- aioredis/client.py:134:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:134:5: error: Method "__delitem__" is not using @override but is overriding a method in class "builtins.dict"  [explicit-override]
- aioredis/client.py:135:29: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In member "__getitem__" of class "CaseInsensitiveDict":
- aioredis/client.py:137:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:137:5: error: Method "__getitem__" is not using @override but is overriding a method in class "builtins.dict"  [explicit-override]
- aioredis/client.py:138:9: error: Returning Any from function declared to return "None"  [no-any-return]
- aioredis/client.py:138:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:138:36: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In member "get" of class "CaseInsensitiveDict":
- aioredis/client.py:140:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:140:5: error: Method "get" is not using @override but is overriding a method in class "builtins.dict"  [explicit-override]
- aioredis/client.py:141:9: error: Returning Any from function declared to return "None"  [no-any-return]
- aioredis/client.py:141:16: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:141:28: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:141:39: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In member "__setitem__" of class "CaseInsensitiveDict":
- aioredis/client.py:143:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:143:5: error: Method "__setitem__" is not using @override but is overriding a method in class "builtins.dict"  [explicit-override]
- aioredis/client.py:144:29: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:144:40: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In member "update" of class "CaseInsensitiveDict":
- aioredis/client.py:146:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:146:5: error: Signature of "update" incompatible with supertype "MutableMapping"  [override]
- aioredis/client.py:146:5: note:      Superclass:
- aioredis/client.py:146:5: note:          @overload
- aioredis/client.py:146:5: note:          def update(self, SupportsKeysAndGetItem[Untyped, Untyped], /, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          @overload
- aioredis/client.py:146:5: note:          def update(self, Iterable[(Untyped, Untyped)], /, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          @overload
- aioredis/client.py:146:5: note:          def update(self, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:      Subclass:
- aioredis/client.py:146:5: note:          def update(self, data: Untyped) -> None
- aioredis/client.py:146:5: error: Method "update" is not using @override but is overriding a method in class "typing.MutableMapping"  [explicit-override]
- aioredis/client.py:147:36: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_debug_object":
- aioredis/client.py:151:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:155:16: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:155:29: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:156:16: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:156:26: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:157:20: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:157:20: error: Expression type contains "Any" (has type "Generator[(Any, Any), None, None]")  [no-any-expr]
- aioredis/client.py:157:21: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:157:45: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:166:5: error: No return value expected  [return-value]
- aioredis/client.py: note: In function "parse_object":
- aioredis/client.py:169:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:171:8: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:172:16: error: Call to incomplete function "int_or_none" in typed context  [no-untyped-call]
- aioredis/client.py:172:16: note: Type is "def (response: Untyped) -> None"
- aioredis/client.py:172:28: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:173:5: error: Returning Any from function declared to return "None"  [no-any-return]
- aioredis/client.py:173:12: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_info":
- aioredis/client.py:176:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:178:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- aioredis/client.py:179:16: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:179:29: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:181:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:182:23: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:182:43: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:184:27: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:185:21: error: No return value expected  [return-value]
- aioredis/client.py:185:34: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:187:21: error: No return value expected  [return-value]
- aioredis/client.py:187:32: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:189:17: error: Returning Any from function declared to return "None"  [no-any-return]
- aioredis/client.py:189:24: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:191:13: error: Need type annotation for "sub_dict" (hint: "sub_dict: dict[<type>, <type>] = ...")  [var-annotated]
- aioredis/client.py:191:13: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-var-annotated for more info
- aioredis/client.py:192:13: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:192:25: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:193:24: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:193:24: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py:194:17: error: Expression type contains "Any" (has type "dict[Any (unannotated), Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:194:17: error: Untyped indexed-assignment to "sub_dict" in typed context  [no-untyped-usage]
- aioredis/client.py:194:26: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py:194:31: error: Call to incomplete function "get_value" in typed context  [no-untyped-call]
- aioredis/client.py:194:31: note: Type is "def (value: Untyped) -> None"
- aioredis/client.py:194:31: error: "get_value" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:194:41: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py:195:13: error: No return value expected  [return-value]
- aioredis/client.py:195:20: error: Expression type contains "Any" (has type "dict[Any (unannotated), Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:197:5: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:197:17: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:198:12: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:198:12: error: Expression type contains "Any" (has type "Any | bool")  [no-any-expr]
- aioredis/client.py:198:25: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:199:16: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:203:30: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:204:20: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:205:34: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:207:20: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:210:21: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- aioredis/client.py:210:21: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:210:48: error: Expression type contains "Any" (has type "list[Any]")  [no-any-expr]
- aioredis/client.py:210:59: error: Call to incomplete function "get_value" in typed context  [no-untyped-call]
- aioredis/client.py:210:59: note: Type is "def (value: Untyped) -> None"
- aioredis/client.py:210:59: error: "get_value" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:210:69: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:212:21: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- aioredis/client.py:212:26: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:212:33: error: Call to incomplete function "get_value" in typed context  [no-untyped-call]
- aioredis/client.py:212:33: note: Type is "def (value: Untyped) -> None"
- aioredis/client.py:212:33: error: "get_value" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:212:43: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:215:17: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- aioredis/client.py:215:17: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:215:44: error: Expression type contains "Any" (has type "list[Any]")  [no-any-expr]
- aioredis/client.py:215:55: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:217:5: error: No return value expected  [return-value]
- aioredis/client.py:217:12: error: Expression type contains "Any" (has type "dict[str, Any]")  [no-any-expr]
- aioredis/client.py: note: In function "parse_memory_stats":
- aioredis/client.py:220:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:222:13: error: Call to incomplete function "pairs_to_dict" in typed context  [no-untyped-call]
- aioredis/client.py:222:13: note: Type is "def (response: Untyped, decode_keys: bool =, decode_string_values: bool =) -> None"
- aioredis/client.py:222:13: error: "pairs_to_dict" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:222:27: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:223:23: error: "None" has no attribute "items"  [attr-defined]
- aioredis/client.py:225:13: error: Unsupported target for indexed assignment ("None")  [index]
- aioredis/client.py:225:13: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-index for more info
- aioredis/client.py:225:26: error: Call to incomplete function "pairs_to_dict" in typed context  [no-untyped-call]
- aioredis/client.py:225:26: note: Type is "def (response: Untyped, decode_keys: bool =, decode_string_values: bool =) -> None"
- aioredis/client.py:225:26: error: "pairs_to_dict" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py: note: In function "parse_sentinel_state":
- aioredis/client.py:258:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:259:14: error: Call to incomplete function "pairs_to_dict_typed" in typed context  [no-untyped-call]
- aioredis/client.py:259:14: note: Type is "def (response: Untyped, type_info: Untyped) -> None"
- aioredis/client.py:259:14: error: "pairs_to_dict_typed" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:259:34: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:260:17: error: Value of type "None" is not indexable  [index]
- aioredis/client.py:270:9: error: Unsupported target for indexed assignment ("None")  [index]
- aioredis/client.py: note: In function "parse_sentinel_master":
- aioredis/client.py:274:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:275:12: error: Call to incomplete function "parse_sentinel_state" in typed context  [no-untyped-call]
- aioredis/client.py:275:12: note: Type is "def (item: Untyped) -> None"
- aioredis/client.py:275:33: error: Expression type contains "Any" (has type "map[Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:275:51: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_sentinel_masters":
- aioredis/client.py:278:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:279:5: error: Need type annotation for "result" (hint: "result: dict[<type>, <type>] = ...")  [var-annotated]
- aioredis/client.py:280:5: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:280:17: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:281:17: error: Call to incomplete function "parse_sentinel_state" in typed context  [no-untyped-call]
- aioredis/client.py:281:17: note: Type is "def (item: Untyped) -> None"
- aioredis/client.py:281:17: error: "parse_sentinel_state" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:281:38: error: Expression type contains "Any" (has type "map[Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:281:56: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:282:9: error: Expression type contains "Any" (has type "dict[Any (unannotated), Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:282:9: error: Untyped indexed-assignment to "result" in typed context  [no-untyped-usage]
- aioredis/client.py:282:16: error: Value of type "None" is not indexable  [index]
- aioredis/client.py:283:5: error: No return value expected  [return-value]
- aioredis/client.py:283:12: error: Expression type contains "Any" (has type "dict[Any (unannotated), Any (unannotated)]")  [no-any-expr]
- aioredis/client.py: note: In function "parse_sentinel_slaves_and_sentinels":
- aioredis/client.py:286:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:287:5: error: No return value expected  [return-value]
- aioredis/client.py:287:12: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:287:13: error: Call to incomplete function "parse_sentinel_state" in typed context  [no-untyped-call]
- aioredis/client.py:287:13: note: Type is "def (item: Untyped) -> None"
- aioredis/client.py:287:13: error: "parse_sentinel_state" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:287:34: error: Expression type contains "Any" (has type "map[Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:287:52: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:287:71: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_sentinel_get_master":
- aioredis/client.py:290:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:291:5: error: No return value expected  [return-value]
- aioredis/client.py:291:12: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:291:12: error: Expression type contains "Any" (has type "Any (unannotated) | (Untyped, int)")  [no-any-expr]
- aioredis/client.py:291:12: error: Expression type contains "Any" (has type "(Untyped, int) | None")  [no-any-expr]
- aioredis/client.py:291:25: error: Expression type contains "Any" (has type "(Untyped, int)")  [no-any-expr]
- aioredis/client.py:291:26: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:291:43: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "pairs_to_dict":
- aioredis/client.py:294:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:296:8: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:297:9: error: No return value expected  [return-value]
- aioredis/client.py:301:9: error: Usage of untyped name "keys" in typed context  [no-untyped-usage]
- aioredis/client.py:301:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:303:13: error: Usage of untyped name "keys" in typed context  [no-untyped-usage]
- aioredis/client.py:303:20: error: Expression type contains "Any" (has type "map[Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:303:38: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:304:9: error: Usage of untyped name "values" in typed context  [no-untyped-usage]
- aioredis/client.py:304:18: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:306:13: error: Usage of untyped name "values" in typed context  [no-untyped-usage]
- aioredis/client.py:306:22: error: Expression type contains "Any" (has type "map[Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:306:40: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:307:9: error: No return value expected  [return-value]
- aioredis/client.py:307:21: error: Expression type contains "Any" (has type "zip[(Any (unannotated), Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:307:25: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:307:31: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:309:14: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:309:19: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:310:9: error: No return value expected  [return-value]
- aioredis/client.py:310:21: error: Expression type contains "Any" (has type "zip[(Any, Any)]")  [no-any-expr]
- aioredis/client.py:310:25: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:310:29: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py: note: In function "pairs_to_dict_typed":
- aioredis/client.py:313:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:314:10: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:314:15: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:316:5: error: Expression type contains "Any" (has type "(Any, Any)")  [no-any-expr]
- aioredis/client.py:316:5: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:316:23: error: Expression type contains "Any" (has type "zip[(Any, Any)]")  [no-any-expr]
- aioredis/client.py:316:27: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:316:31: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:317:12: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:317:19: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:319:25: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:319:35: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:319:40: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:324:9: error: Expression type contains "Any" (has type "dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:324:16: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:324:23: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:325:5: error: No return value expected  [return-value]
- aioredis/client.py:325:12: error: Expression type contains "Any" (has type "dict[Any, Any]")  [no-any-expr]
- aioredis/client.py: note: In function "zset_score_pairs":
- aioredis/client.py:328:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:333:12: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:333:28: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/client.py:333:28: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- aioredis/client.py:334:9: error: Returning Any from function declared to return "None"  [no-any-return]
- aioredis/client.py:334:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:335:5: error: Usage of untyped name "score_cast_func" in typed context  [no-untyped-usage]
- aioredis/client.py:335:23: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/client.py:335:23: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:336:10: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:336:15: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:337:5: error: No return value expected  [return-value]
- aioredis/client.py:337:12: error: Expression type contains "Any" (has type "list[(Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:337:17: error: Expression type contains "Any" (has type "zip[(Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:337:21: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:337:25: error: Expression type contains "Any" (has type "map[Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:337:29: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:337:46: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py: note: In function "sort_return_tuples":
- aioredis/client.py:340:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:345:12: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:345:28: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/client.py:345:28: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- aioredis/client.py:346:9: error: Returning Any from function declared to return "None"  [no-any-return]
- aioredis/client.py:346:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:347:5: error: Usage of untyped name "n" in typed context  [no-untyped-usage]
- aioredis/client.py:347:9: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/client.py:347:9: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:348:5: error: No return value expected  [return-value]
- aioredis/client.py:348:12: error: Expression type contains "Any" (has type "list[tuple[Any, ...]]")  [no-any-expr]
- aioredis/client.py:348:17: error: Expression type contains "Any" (has type "zip[tuple[Any, ...]]")  [no-any-expr]
- aioredis/client.py:348:22: error: Expression type contains "Any" (has type "Generator[Any (unannotated), None, None]")  [no-any-expr]
- aioredis/client.py:348:23: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:348:35: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:348:53: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "int_or_none":
- aioredis/client.py:351:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:352:8: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:354:5: error: No return value expected  [return-value]
- aioredis/client.py:354:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_stream_list":
- aioredis/client.py:357:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:358:8: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:361:5: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:361:14: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:362:12: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:363:13: error: Expression type contains "Any" (has type "list[(Untyped, None)]")  [no-any-expr]
- aioredis/client.py:363:13: error: Call to incomplete function "append" of "list" in typed context  [no-untyped-call]
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
- aioredis/client.py:363:25: error: Expression type contains "Any" (has type "(Untyped, None)")  [no-any-expr]
- aioredis/client.py:363:26: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:363:32: error: Call to incomplete function "pairs_to_dict" in typed context  [no-untyped-call]
- aioredis/client.py:363:32: note: Type is "def (response: Untyped, decode_keys: bool =, decode_string_values: bool =) -> None"
- aioredis/client.py:363:32: error: "pairs_to_dict" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:363:46: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:365:13: error: Expression type contains "Any" (has type "list[(Untyped, None)]")  [no-any-expr]
- aioredis/client.py:365:13: error: Call to incomplete function "append" of "list" in typed context  [no-untyped-call]
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
- aioredis/client.py:366:5: error: No return value expected  [return-value]
- aioredis/client.py:366:12: error: Expression type contains "Any" (has type "list[(Untyped, None)]")  [no-any-expr]
- aioredis/client.py: note: In function "pairs_to_dict_with_str_keys":
- aioredis/client.py:369:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:370:12: error: Call to incomplete function "pairs_to_dict" in typed context  [no-untyped-call]
- aioredis/client.py:370:12: note: Type is "def (response: Untyped, decode_keys: bool =, decode_string_values: bool =) -> None"
- aioredis/client.py:370:26: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_list_of_dicts":
- aioredis/client.py:373:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:374:5: error: No return value expected  [return-value]
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:374:50: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_xclaim":
- aioredis/client.py:377:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:378:8: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/client.py:378:8: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:379:9: error: Returning Any from function declared to return "None"  [no-any-return]
- aioredis/client.py:379:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:380:12: error: Call to incomplete function "parse_stream_list" in typed context  [no-untyped-call]
- aioredis/client.py:380:12: note: Type is "def (response: Untyped) -> None"
- aioredis/client.py:380:30: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_xinfo_stream":
- aioredis/client.py:383:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:384:12: error: Call to incomplete function "pairs_to_dict" in typed context  [no-untyped-call]
- aioredis/client.py:384:12: note: Type is "def (response: Untyped, decode_keys: bool =, decode_string_values: bool =) -> None"
- aioredis/client.py:384:12: error: "pairs_to_dict" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:384:26: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:385:13: error: Value of type "None" is not indexable  [index]
- aioredis/client.py:387:9: error: Unsupported target for indexed assignment ("None")  [index]
- aioredis/client.py:387:42: error: Call to incomplete function "pairs_to_dict" in typed context  [no-untyped-call]
- aioredis/client.py:387:42: note: Type is "def (response: Untyped, decode_keys: bool =, decode_string_values: bool =) -> None"
- aioredis/client.py:387:42: error: "pairs_to_dict" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:388:12: error: Value of type "None" is not indexable  [index]
- aioredis/client.py:390:9: error: Unsupported target for indexed assignment ("None")  [index]
- aioredis/client.py:390:40: error: Call to incomplete function "pairs_to_dict" in typed context  [no-untyped-call]
- aioredis/client.py:390:40: note: Type is "def (response: Untyped, decode_keys: bool =, decode_string_values: bool =) -> None"
- aioredis/client.py:390:40: error: "pairs_to_dict" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py: note: In function "parse_xread":
- aioredis/client.py:394:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:395:8: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:396:9: error: No return value expected  [return-value]
- aioredis/client.py:397:5: error: No return value expected  [return-value]
- aioredis/client.py:397:12: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:397:12: error: Expression type contains "Any" (has type "list[list[Untyped | None]]")  [no-any-expr]
- aioredis/client.py:397:13: error: Expression type contains "Any" (has type "list[Untyped | None]")  [no-any-expr]
- aioredis/client.py:397:14: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:397:20: error: Call to incomplete function "parse_stream_list" in typed context  [no-untyped-call]
- aioredis/client.py:397:20: note: Type is "def (response: Untyped) -> None"
- aioredis/client.py:397:20: error: "parse_stream_list" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:397:38: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:397:54: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_xpending":
- aioredis/client.py:400:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:401:8: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/client.py:401:8: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:402:16: error: Call to incomplete function "parse_xpending_range" in typed context  [no-untyped-call]
- aioredis/client.py:402:16: note: Type is "def (response: Untyped) -> None"
- aioredis/client.py:402:37: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:403:17: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py:403:17: error: Expression type contains "Any" (has type "list[dict[str | str, Any (unannotated) | int]]")  [no-any-expr]
- aioredis/client.py:403:18: error: Expression type contains "Any" (has type "dict[str | str, Any (unannotated) | int]")  [no-any-expr]
- aioredis/client.py:403:19: error: Expression type contains "Any" (has type "(str, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:403:27: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py:403:45: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py:403:61: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:403:61: error: Expression type contains "Any" (has type "Any (unannotated) | list[Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:403:76: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:404:5: error: No return value expected  [return-value]
- aioredis/client.py:404:12: error: Expression type contains "Any" (has type "dict[str | str, Untyped | list[dict[str, Any (unannotated) | int]]]")  [no-any-expr]
- aioredis/client.py:405:9: error: Expression type contains "Any" (has type "(str, Untyped)")  [no-any-expr]
- aioredis/client.py:405:20: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:406:9: error: Expression type contains "Any" (has type "(str, Untyped)")  [no-any-expr]
- aioredis/client.py:406:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:407:9: error: Expression type contains "Any" (has type "(str, Untyped)")  [no-any-expr]
- aioredis/client.py:407:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:408:9: error: Expression type contains "Any" (has type "(str, list[dict[str, Any (unannotated) | int]])")  [no-any-expr]
- aioredis/client.py:408:22: error: Expression type contains "Any" (has type "list[dict[str, Any (unannotated) | int]]")  [no-any-expr]
- aioredis/client.py: note: In function "parse_xpending_range":
- aioredis/client.py:412:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:414:5: error: No return value expected  [return-value]
- aioredis/client.py:414:12: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:414:12: error: Expression type contains "Any" (has type "list[dict[str, Any (unannotated)]]")  [no-any-expr]
- aioredis/client.py:414:13: error: Expression type contains "Any" (has type "dict[str, Any (unannotated)]")  [no-any-expr]
- aioredis/client.py:414:18: error: Expression type contains "Any" (has type "zip[(str, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:414:25: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:414:38: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "float_or_none":
- aioredis/client.py:417:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:418:8: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:420:5: error: No return value expected  [return-value]
- aioredis/client.py:420:18: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "bool_ok":
- aioredis/client.py:423:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:424:5: error: Returning Any from function declared to return "None"  [no-any-return]
- aioredis/client.py:424:12: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:424:25: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_zadd":
- aioredis/client.py:427:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:428:8: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:430:8: error: Expression type contains "Any" (has type "dict[str, Untyped]")  [no-any-expr]
- aioredis/client.py:430:8: error: Expression type contains "Any" (has type "Untyped | None")  [no-any-expr]
- aioredis/client.py:431:9: error: No return value expected  [return-value]
- aioredis/client.py:431:22: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:432:5: error: No return value expected  [return-value]
- aioredis/client.py:432:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py: note: In function "parse_client_list":
- aioredis/client.py:435:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:437:5: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:437:14: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:437:27: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:439:28: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:439:28: error: Expression type contains "Any" (has type "Generator[(Any, Any), None, None]")  [no-any-expr]
- aioredis/client.py:439:29: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:439:60: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:440:5: error: No return value expected  [return-value]
- aioredis/client.py: note: In function "parse_config_get":
- aioredis/client.py:443:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:444:16: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:444:16: error: Expression type contains "Any" (has type "list[Any | None]")  [no-any-expr]
- aioredis/client.py:444:17: error: Expression has type "Any"  [no-any-expr]
- aioredis/client.py:444:17: error: Expression type contains "Any" (has type "Any | None")  [no-any-expr]
- aioredis/client.py:444:30: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:444:36: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:444:69: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:445:5: error: No return value expected  [return-value]
- aioredis/client.py:445:12: error: Expression type contains "Any" (has type "list[Any | None]")  [no-any-expr]
- aioredis/client.py:445:12: error: Expression type contains "Any" (has type "list[Any | None] | None")  [no-any-expr]
- aioredis/client.py:445:12: error: Left operand of "or" is always false  [redundant-expr]
- aioredis/client.py:445:25: error: Call to incomplete function "pairs_to_dict" in typed context  [no-untyped-call]
- aioredis/client.py:445:25: note: Type is "def (response: Untyped, decode_keys: bool =, decode_string_values: bool =) -> None"
- aioredis/client.py:445:25: error: "pairs_to_dict" does not return a value (it only ever returns None)  [func-returns-value]
- aioredis/client.py:445:39: error: Expression type contains "Any" (has type "list[Any | None]")  [no-any-expr]
- aioredis/client.py: note: In function "parse_scan":
- aioredis/client.py:448:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- aioredis/client.py:449:17: error: Expression has type "Untyped"  [no-any-expr]
- aioredis/client.py:449:17: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py:450:5: error: No return value expected  [return-value]
- aioredis/client.py:450:12: error: Expression type contains "Any" (has type "(int, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:450:16: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py:450:25: error: Expression has type "Any (unannotated)"  [no-any-expr]
- aioredis/client.py: note: In function "parse_hscan":
- aioredis/client.py:453:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]

... (truncated 2204 lines) ...

pycryptodome (https://github.com/Legrandin/pycryptodome)
+ Traceback (most recent call last):
+   File "/tmp/mypy_primer/new_mypy/venv/bin/mypy", line 8, in <module>
+     sys.exit(console_entry())
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/__main__.py", line 15, in console_entry
+     main()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 103, in main
+     res, messages, blockers = run_build(sources, options, fscache, t0, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/main.py", line 210, in run_build
+     res = build.build(sources, options, None, flush_errors, fscache, stdout, stderr)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 196, in build
+     result = _build(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 273, in _build
+     graph = dispatch(sources, manager, stdout)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3083, in dispatch
+     process_graph(graph, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3483, in process_graph
+     process_stale_scc(graph, scc, manager)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/build.py", line 3578, in process_stale_scc
+     mypy.semanal_main.semantic_analysis_for_scc(graph, scc, manager.errors)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_main.py", line 97, in semantic_analysis_for_scc
+     apply_semantic_analyzer_patches(patches)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 7053, in apply_semantic_analyzer_patches
+     patch_func()
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal.py", line 2400, in <lambda>
+     self.schedule_patch(PRIORITY_FALLBACKS, lambda: calculate_tuple_fallback(base))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/semanal_shared.py", line 307, in calculate_tuple_fallback
+     fallback.args = (join.join_type_list(items),)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 894, in join_type_list
+     joined = join_types(joined, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 284, in join_types
+     r = _union_join(s, t)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/join.py", line 250, in _union_join
+     return mypy.typeops.make_simplified_union([l, r])
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 466, in make_simplified_union
+     simplified_set: Sequence[Type] = _remove_redundant_union_items(items, keep_erased)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 552, in _remove_redundant_union_items
+     if is_proper_subtype(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 226, in is_proper_subtype
+     return _is_subtype(left, right, subtype_context, proper_subtype=True)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 368, in _is_subtype
+     return left.accept(SubtypeVisitor(orig_right, subtype_context, proper_subtype))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/types.py", line 1605, in accept
+     return visitor.visit_instance(self)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 615, in visit_instance
+     if right.type.is_protocol and is_protocol_implementation(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1169, in is_protocol_implementation
+     supertype = get_proper_type(find_member(member, right, left))
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1255, in find_member
+     return find_node_type(method, itype, subtype, class_obj=class_obj)
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/subtypes.py", line 1381, in find_node_type
+     signature = bind_self(
+   File "/tmp/mypy_primer/new_mypy/venv/lib/python3.10/site-packages/mypy/typeops.py", line 357, in bind_self
+     assert METHOD_TYPE
+ AssertionError
- lib/Crypto/Util/py3compat.pyi: note: In function "bytestring":
- lib/Crypto/Util/py3compat.pyi:12:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/py3compat.pyi:12:1: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-explicit for more info
- lib/Crypto/Util/py3compat.pyi: note: In function "is_native_int":
- lib/Crypto/Util/py3compat.pyi:14:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/py3compat.pyi: note: In function "is_string":
- lib/Crypto/Util/py3compat.pyi:15:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/py3compat.pyi: note: In function "is_bytes":
- lib/Crypto/Util/py3compat.pyi:16:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/number.pyi: note: In function "getRandomInteger":
- lib/Crypto/Util/number.pyi:6:49: error: Missing type parameters for generic type "Callable"  [type-arg]
- lib/Crypto/Util/number.pyi:6:49: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-type-arg for more info
- lib/Crypto/Util/number.pyi: note: In function "getRandomRange":
- lib/Crypto/Util/number.pyi:7:55: error: Missing type parameters for generic type "Callable"  [type-arg]
- lib/Crypto/Util/number.pyi: note: In function "getRandomNBitInteger":
- lib/Crypto/Util/number.pyi:8:53: error: Missing type parameters for generic type "Callable"  [type-arg]
- lib/Crypto/Util/number.pyi: note: In function "getPrime":
- lib/Crypto/Util/number.pyi:11:41: error: Missing type parameters for generic type "Callable"  [type-arg]
- lib/Crypto/Util/number.pyi: note: In function "getStrongPrime":
- lib/Crypto/Util/number.pyi:12:110: error: Missing type parameters for generic type "Callable"  [type-arg]
- lib/Crypto/Util/number.pyi: note: In function "isPrime":
- lib/Crypto/Util/number.pyi:13:83: error: Missing type parameters for generic type "Callable"  [type-arg]
- lib/Crypto/Util/asn1.pyi: note: In member "encode" of class "DerInteger":
- lib/Crypto/Util/asn1.pyi:27:5: error: Method "encode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi:27:5: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-explicit-override for more info
- lib/Crypto/Util/asn1.pyi: note: In member "decode" of class "DerInteger":
- lib/Crypto/Util/asn1.pyi:28:5: error: Method "decode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi: note: In member "encode" of class "DerBoolean":
- lib/Crypto/Util/asn1.pyi:33:5: error: Method "encode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi: note: In member "decode" of class "DerBoolean":
- lib/Crypto/Util/asn1.pyi:34:5: error: Method "decode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi: note: In member "__setslice__" of class "DerSequence":
- lib/Crypto/Util/asn1.pyi:41:54: error: Missing type parameters for generic type "Sequence"  [type-arg]
- lib/Crypto/Util/asn1.pyi: note: In member "encode" of class "DerSequence":
- lib/Crypto/Util/asn1.pyi:49:5: error: Method "encode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi: note: In member "decode" of class "DerSequence":
- lib/Crypto/Util/asn1.pyi:50:5: error: Method "decode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi: note: In member "encode" of class "DerObjectId":
- lib/Crypto/Util/asn1.pyi:62:5: error: Method "encode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi: note: In member "decode" of class "DerObjectId":
- lib/Crypto/Util/asn1.pyi:63:5: error: Method "decode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi: note: In member "encode" of class "DerBitString":
- lib/Crypto/Util/asn1.pyi:68:5: error: Method "encode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi: note: In member "decode" of class "DerBitString":
- lib/Crypto/Util/asn1.pyi:69:5: error: Method "decode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi: note: In member "__iter__" of class "DerSetOf":
- lib/Crypto/Util/asn1.pyi:76:27: error: Missing type parameters for generic type "Iterable"  [type-arg]
- lib/Crypto/Util/asn1.pyi: note: In member "decode" of class "DerSetOf":
- lib/Crypto/Util/asn1.pyi:79:5: error: Method "decode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/asn1.pyi: note: In member "encode" of class "DerSetOf":
- lib/Crypto/Util/asn1.pyi:80:5: error: Method "encode" is not using @override but is overriding a method in class "Crypto.Util.asn1.DerObject"  [explicit-override]
- lib/Crypto/Util/_raw_api.pyi: note: In function "load_lib":
- lib/Crypto/Util/_raw_api.pyi:3:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In function "c_ulong":
- lib/Crypto/Util/_raw_api.pyi:4:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In function "c_ulonglong":
- lib/Crypto/Util/_raw_api.pyi:5:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In function "c_size_t":
- lib/Crypto/Util/_raw_api.pyi:6:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In function "create_string_buffer":
- lib/Crypto/Util/_raw_api.pyi:7:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In function "get_c_string":
- lib/Crypto/Util/_raw_api.pyi:8:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In function "get_raw_buffer":
- lib/Crypto/Util/_raw_api.pyi:9:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In function "c_uint8_ptr":
- lib/Crypto/Util/_raw_api.pyi:10:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In member "get" of class "VoidPointer":
- lib/Crypto/Util/_raw_api.pyi:13:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In member "address_of" of class "VoidPointer":
- lib/Crypto/Util/_raw_api.pyi:14:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In member "__init__" of class "SmartPointer":
- lib/Crypto/Util/_raw_api.pyi:17:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In member "get" of class "SmartPointer":
- lib/Crypto/Util/_raw_api.pyi:18:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In member "release" of class "SmartPointer":
- lib/Crypto/Util/_raw_api.pyi:19:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: At top level:
- lib/Crypto/Util/_raw_api.pyi:22:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi:23:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In function "load_pycryptodome_raw_lib":
- lib/Crypto/Util/_raw_api.pyi:25:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In function "is_buffer":
- lib/Crypto/Util/_raw_api.pyi:26:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Util/_raw_api.pyi: note: In function "is_writeable_buffer":
- lib/Crypto/Util/_raw_api.pyi:27:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Random/random.pyi: note: In member "__init__" of class "StrongRandom":
- lib/Crypto/Random/random.pyi:8:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Random/random.pyi:8:68: error: Missing type parameters for generic type "Callable"  [type-arg]
- lib/Crypto/Random/random.pyi: note: In member "shuffle" of class "StrongRandom":
- lib/Crypto/Random/random.pyi:13:26: error: Missing type parameters for generic type "Sequence"  [type-arg]
- lib/Crypto/Random/random.pyi: note: In member "sample" of class "StrongRandom":
- lib/Crypto/Random/random.pyi:14:34: error: Missing type parameters for generic type "Sequence"  [type-arg]
- lib/Crypto/Random/random.pyi:14:55: error: Missing type parameters for generic type "list"  [type-arg]
- lib/Crypto/Random/__init__.pyi: note: In function "new":
- lib/Crypto/Random/__init__.pyi:14:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/PublicKey/ElGamal.pyi: note: In member "__eq__" of class "ElGamalKey":
- lib/Crypto/PublicKey/ElGamal.pyi:16:5: error: Method "__eq__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- lib/Crypto/PublicKey/ElGamal.pyi: note: In member "__ne__" of class "ElGamalKey":
- lib/Crypto/PublicKey/ElGamal.pyi:17:5: error: Method "__ne__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- lib/Crypto/PublicKey/DSA.pyi: note: In member "__eq__" of class "DsaKey":
- lib/Crypto/PublicKey/DSA.pyi:13:5: error: Method "__eq__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- lib/Crypto/PublicKey/DSA.pyi: note: In member "__ne__" of class "DsaKey":
- lib/Crypto/PublicKey/DSA.pyi:14:5: error: Method "__ne__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- lib/Crypto/PublicKey/DSA.pyi: note: In member "__repr__" of class "DsaKey":
- lib/Crypto/PublicKey/DSA.pyi:17:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- lib/Crypto/Protocol/SecretSharing.pyi: note: In member "__eq__" of class "_Element":
- lib/Crypto/Protocol/SecretSharing.pyi:9:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- lib/Crypto/Protocol/SecretSharing.pyi:9:5: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-def for more info
- lib/Crypto/Protocol/SecretSharing.pyi:9:5: error: Method "__eq__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- lib/Crypto/Protocol/SecretSharing.pyi: note: In member "__pow__" of class "_Element":
- lib/Crypto/Protocol/SecretSharing.pyi:15:5: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- lib/Crypto/Protocol/KDF.pyi: note: In member "__init__" of class "_S2V":
- lib/Crypto/Protocol/KDF.pyi:14:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Math/_IntegerBase.pyi: note: In member "__str__" of class "IntegerBase":
- lib/Crypto/Math/_IntegerBase.pyi:10:5: error: Method "__str__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- lib/Crypto/Math/_IntegerBase.pyi: note: In member "__repr__" of class "IntegerBase":
- lib/Crypto/Math/_IntegerBase.pyi:11:5: error: Method "__repr__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- lib/Crypto/Math/_IntegerBase.pyi: note: In member "__eq__" of class "IntegerBase":
- lib/Crypto/Math/_IntegerBase.pyi:15:5: error: Method "__eq__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- lib/Crypto/Math/_IntegerBase.pyi: note: In member "__ne__" of class "IntegerBase":
- lib/Crypto/Math/_IntegerBase.pyi:16:5: error: Method "__ne__" is not using @override but is overriding a method in class "builtins.object"  [explicit-override]
- lib/Crypto/Hash/CMAC.pyi: note: In member "__init__" of class "CMAC":
- lib/Crypto/Hash/CMAC.pyi:11:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Hash/CMAC.pyi: note: In function "new":
- lib/Crypto/Hash/CMAC.pyi:25:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Hash/BLAKE2s.pyi: note: In member "new" of class "BLAKE2s_Hash":
- lib/Crypto/Hash/BLAKE2s.pyi:20:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Cipher/_mode_siv.pyi: note: In member "__init__" of class "SivMode":
- lib/Crypto/Cipher/_mode_siv.pyi:16:26: error: Missing type parameters for generic type "Dict"  [type-arg]
- lib/Crypto/Cipher/_mode_openpgp.pyi: note: In member "__init__" of class "OpenPgpMode":
- lib/Crypto/Cipher/_mode_openpgp.pyi:17:33: error: Missing type parameters for generic type "Dict"  [type-arg]
- lib/Crypto/Cipher/_mode_ocb.pyi: note: In member "__init__" of class "OcbMode":
- lib/Crypto/Cipher/_mode_ocb.pyi:14:33: error: Missing type parameters for generic type "Dict"  [type-arg]
- lib/Crypto/Cipher/_mode_gcm.pyi: note: In member "__init__" of class "GcmMode":
- lib/Crypto/Cipher/_mode_gcm.pyi:17:33: error: Missing type parameters for generic type "Dict"  [type-arg]
- lib/Crypto/Cipher/_mode_eax.pyi: note: In member "__init__" of class "EaxMode":
- lib/Crypto/Cipher/_mode_eax.pyi:17:33: error: Missing type parameters for generic type "Dict"  [type-arg]
- lib/Crypto/Cipher/_mode_ccm.pyi: note: In member "__init__" of class "CcmMode":
- lib/Crypto/Cipher/_mode_ccm.pyi:19:33: error: Missing type parameters for generic type "Dict"  [type-arg]
- lib/Crypto/Cipher/ARC4.pyi: note: In member "__init__" of class "ARC4Cipher":
- lib/Crypto/Cipher/ARC4.pyi:9:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:5:21: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:5:21: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-expr for more info
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py: note: In function "pkcs1_decode":
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:21:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:22:12: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:22:23: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:25:11: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:25:42: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:25:54: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:26:42: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:26:55: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:27:42: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:27:54: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:28:42: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:28:55: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:29:42: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:29:51: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:30:42: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:30:54: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:31:5: error: Returning Any from function declared to return "None"  [no-any-return]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:31:5: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-any-return for more info
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:31:12: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py: note: In function "oaep_decode":
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:34:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:35:11: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:35:41: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:35:53: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:36:41: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:36:54: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:37:41: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:37:53: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:38:41: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:38:54: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:39:41: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:39:53: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:40:41: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:40:54: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:41:5: error: Returning Any from function declared to return "None"  [no-any-return]
- lib/Crypto/Cipher/_pkcs1_oaep_decode.py:41:12: error: Expression has type "Any"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:42: error: "type: ignore" comment without error code (consider "type: ignore[import-not-found]" instead)  [ignore-without-code]
- lib/Crypto/SelfTest/loader.py: note: In function "_load_tests":
- lib/Crypto/SelfTest/loader.py:48:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- lib/Crypto/SelfTest/loader.py:61:9: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- lib/Crypto/SelfTest/loader.py:62:13: error: Usage of untyped name "desc" in typed context  [no-untyped-usage]
- lib/Crypto/SelfTest/loader.py:62:13: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-usage for more info
- lib/Crypto/SelfTest/loader.py:62:25: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:63:13: error: Usage of untyped name "count" in typed context  [no-untyped-usage]
- lib/Crypto/SelfTest/loader.py:63:26: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:64:13: error: Need type annotation for "others" (hint: "others: list[<type>] = ...")  [var-annotated]
- lib/Crypto/SelfTest/loader.py:64:13: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-var-annotated for more info
- lib/Crypto/SelfTest/loader.py:72:9: error: Usage of untyped name "line" in typed context  [no-untyped-usage]
- lib/Crypto/SelfTest/loader.py:72:16: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:73:16: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:74:16: error: Condition is always false  [redundant-expr]
- lib/Crypto/SelfTest/loader.py:74:16: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-redundant-expr for more info
- lib/Crypto/SelfTest/loader.py:75:17: error: Statement is unreachable  [unreachable]
- lib/Crypto/SelfTest/loader.py:75:17: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-unreachable for more info
- lib/Crypto/SelfTest/loader.py:77:9: error: Usage of untyped name "line" in typed context  [no-untyped-usage]
- lib/Crypto/SelfTest/loader.py:77:16: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:80:12: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:80:12: error: Expression type contains "Any" (has type "Any (unannotated) | bool")  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:80:40: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:84:12: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:85:16: error: Condition is always false  [redundant-expr]
- lib/Crypto/SelfTest/loader.py:86:17: error: Statement is unreachable  [unreachable]
- lib/Crypto/SelfTest/loader.py:88:13: error: Expression type contains "Any" (has type "list[Untyped]")  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:88:13: error: Call to incomplete function "append" of "list" in typed context  [no-untyped-call]
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
- lib/Crypto/SelfTest/loader.py:88:13: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-no-untyped-call for more info
- lib/Crypto/SelfTest/loader.py:88:28: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:94:16: error: Condition is always false  [redundant-expr]
- lib/Crypto/SelfTest/loader.py:95:17: error: Statement is unreachable  [unreachable]
- lib/Crypto/SelfTest/loader.py:96:51: error: Expression type contains "Any" (has type "(Untyped, int)")  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:96:52: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:98:50: error: Expression has type "Untyped"  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:100:13: error: Item "None" of "TestVector | None" has no attribute "others"  [union-attr]
- lib/Crypto/SelfTest/loader.py:100:13: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-union-attr for more info
- lib/Crypto/SelfTest/loader.py:100:13: error: Expression type contains "Any" (has type "list[Any (unannotated)] | Any (from error)")  [no-any-expr]
- lib/Crypto/SelfTest/loader.py:100:35: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]```</details>

... (truncated 76733 lines) ...

github-actions[bot] avatar Jan 24 '24 07:01 github-actions[bot]

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

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "MethodType (attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "MethodType (attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "MethodType (Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "MethodType (message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "MethodType (node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "MethodType (children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "MethodType (character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "MethodType (character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "MethodType (Untyped) -> None"
- parso/python/errors.py:231:12: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/python/errors.py:231:12: note:     [_T] __init__(self) -> list[_T@list]
- parso/python/errors.py:231:12: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/python/errors.py:231:12: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "MethodType (typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "MethodType (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "MethodType (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:395:39: error: Expression type contains "Any" (has type "(node: Untyped, message: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:395:39: error: Expression type contains "Any" (has type "MethodType (node: Untyped, message: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:398:63: error: Expression type contains "Any" (has type "(node: Untyped, message: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:398:63: error: Expression type contains "Any" (has type "MethodType (node: Untyped, message: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "MethodType (node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "MethodType (spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "MethodType (child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "MethodType (spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "MethodType (node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "MethodType (node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "MethodType () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py: note: In class "ErrorFinderConfig":
+ parso/python/errors.py:517:24: error: Incompatible types in assignment (expression has type "type[ErrorFinder]", base class "NormalizerConfig" defined the type as "MethodType (config: Untyped) -> Normalizer")  [assignment]
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:557:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:557:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:557:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:557:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:569:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:569:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:569:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:569:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:582:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:582:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:582:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:582:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:604:5: note:          def get_node(self, node: Untyped) -> None
+ parso/python/errors.py:604:5: note:          MethodType get_node(self, node: Untyped) -> None
- parso/python/errors.py:604:5: note:          def get_node(self, leaf: Untyped) -> None
+ parso/python/errors.py:604:5: note:          MethodType get_node(self, leaf: Untyped) -> None
- parso/python/errors.py:607:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:607:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:607:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:607:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:617:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:617:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:617:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:617:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:631:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:631:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:631:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:631:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:664:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:664:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:664:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:664:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:680:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:680:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:680:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:680:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:692:5: note:          def get_node(self, node: Untyped) -> None
+ parso/python/errors.py:692:5: note:          MethodType get_node(self, node: Untyped) -> None
- parso/python/errors.py:692:5: note:          def get_node(self, leaf: Untyped) -> None
+ parso/python/errors.py:692:5: note:          MethodType get_node(self, leaf: Untyped) -> None
- parso/python/errors.py:695:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:695:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:695:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:695:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "MethodType (string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "MethodType (string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "MethodType (Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:995:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:995:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:995:5: note:          def is_issue(self, try_stmt: Untyped) -> None
+ parso/python/errors.py:995:5: note:          MethodType is_issue(self, try_stmt: Untyped) -> None
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "MethodType (children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "MethodType (format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1038:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1038:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1038:5: note:          def is_issue(self, fstring: Untyped) -> None
+ parso/python/errors.py:1038:5: note:          MethodType is_issue(self, fstring: Untyped) -> None
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "MethodType (children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "MethodType (fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1232:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1232:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1232:5: note:          def is_issue(self, with_item: Untyped) -> None
+ parso/python/errors.py:1232:5: note:          MethodType is_issue(self, with_item: Untyped) -> None
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1238:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1238:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1238:5: note:          def is_issue(self, del_stmt: Untyped) -> None
+ parso/python/errors.py:1238:5: note:          MethodType is_issue(self, del_stmt: Untyped) -> None
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1247:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1247:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1247:5: note:          def is_issue(self, expr_list: Untyped) -> None
+ parso/python/errors.py:1247:5: note:          MethodType is_issue(self, expr_list: Untyped) -> None
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1254:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1254:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1254:5: note:          def is_issue(self, for_stmt: Untyped) -> None
+ parso/python/errors.py:1254:5: note:          MethodType is_issue(self, for_stmt: Untyped) -> None
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1265:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1265:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1265:5: note:          def is_issue(self, namedexpr_test: Untyped) -> None
+ parso/python/errors.py:1265:5: note:          MethodType is_issue(self, namedexpr_test: Untyped) -> None
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "MethodType (typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "MethodType (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "MethodType (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:665:13: note:     def __setitem__(self, SupportsIndex, NodeOrLeaf, /) -> None
+ parso/python/tree.py:665:13: note:     MethodType __setitem__(self, SupportsIndex, NodeOrLeaf, /) -> None
- parso/python/tree.py:665:13: note:     def __setitem__(self, slice, Iterable[NodeOrLeaf], /) -> None
+ parso/python/tree.py:665:13: note:     MethodType __setitem__(self, slice, Iterable[NodeOrLeaf], /) -> None
- parso/python/tree.py:716:36: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/python/tree.py:716:36: note:     [_T] __init__(self) -> list[_T@list]
- parso/python/tree.py:716:36: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/python/tree.py:716:36: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "MethodType (children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "MethodType () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "MethodType () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "MethodType () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "MethodType (next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "MethodType () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:73:16: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/parser.py:73:16: note:     [_T] __init__(self) -> list[_T@list]
- parso/parser.py:73:16: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/parser.py:73:16: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "MethodType (token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "MethodType (nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "MethodType (token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "MethodType (Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "MethodType (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "MethodType (nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "MethodType (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "MethodType (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "MethodType (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "MethodType (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "MethodType (spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "MethodType (spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "MethodType (part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "MethodType (part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py: note: In class "PEP8NormalizerConfig":
+ parso/python/pep8.py:744:24: error: Incompatible types in assignment (expression has type "type[PEP8Normalizer]", base class "NormalizerConfig" defined the type as "MethodType (config: Untyped) -> Normalizer")  [assignment]
- parso/python/pep8.py:766:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/pep8.py:766:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/pep8.py:766:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/pep8.py:766:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/parser.py:101:5: note:          def convert_leaf(self, type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
+ parso/python/parser.py:101:5: note:          MethodType convert_leaf(self, type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
- parso/python/parser.py:101:5: note:          def convert_leaf(self, type: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
+ parso/python/parser.py:101:5: note:          MethodType convert_leaf(self, type: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "MethodType (token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "MethodType (start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "MethodType (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "MethodType (old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "MethodType (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "MethodType (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "MethodType (suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "MethodType (tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "MethodType (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "MethodType (child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "MethodType (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "MethodType (indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "MethodType (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:17: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/python/diff.py:726:17: note:     [_T] __init__(self) -> list[_T@list]
- parso/python/diff.py:726:17: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/python/diff.py:726:17: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "MethodType (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "MethodType (node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "MethodType (node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "MethodType (normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "MethodType (normalizer_config: Untyped) -> None"
- parso/grammar.py:220:23: error: Expression type contains "Any" (has type "(lines: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/grammar.py:220:23: error: Expression type contains "Any" (has type "MethodType (lines: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "MethodType (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

pycryptodome (https://github.com/Legrandin/pycryptodome)
+ lib/Crypto/SelfTest/Protocol/test_KDF.py:789: error: INTERNAL ERROR -- Please try using mypy master on GitHub:
+ https://kotlinisland.github.io/basedmypy/common_issues.html#using-a-development-mypy-build
+ Please report a bug at https://github.com/KotlinIsland/basedmypy/issues
+ version: 2.3.0+dev.e404893ec23fe48731c5f0e5755748ca0bd5c07c
+ lib/Crypto/SelfTest/Protocol/test_KDF.py:789: : note: use --pdb to drop into pdb
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "MethodType (Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:130:42: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:130:42: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:131:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:131:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:132:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:132:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:133:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:133:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:158:38: error: Expression type contains "Any" (has type "(population: Sequence[Untyped], k: int) -> list[Untyped]")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:158:38: error: Expression type contains "Any" (has type "MethodType (population: Sequence[Untyped], k: int) -> list[Untyped]")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     def [_T] __init__(self) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     [_T] __init__(self) -> list[_T@list]
- lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     def [_T] __init__(self) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     [_T] __init__(self) -> list[_T@list]
- lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         def update(self, data: bytes | bytearray | memoryview) -> BLAKE2b_Hash
+ lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> BLAKE2b_Hash
- lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         def update(self, data: bytes | bytearray | memoryview) -> BLAKE2s_Hash
+ lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> BLAKE2s_Hash
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     def __getitem__(self, SupportsIndex, /) -> (str, str, str, str, str, str)
+ lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     MethodType __getitem__(self, SupportsIndex, /) -> (str, str, str, str, str, str)
- lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     def __getitem__(self, slice, /) -> list[(str, str, str, str, str, str)]
+ lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     MethodType __getitem__(self, slice, /) -> list[(str, str, str, str, str, str)]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "MethodType (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:427:18: note:     def export_key(self, format: str | None = ..., passphrase: str | None = ..., pkcs: int | None = ..., protection: str | None = ..., randfunc: (int) -> bytes | None = ...) -> bytes
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:427:18: note:     MethodType export_key(self, format: str | None = ..., passphrase: str | None = ..., pkcs: int | None = ..., protection: str | None = ..., randfunc: (int) -> bytes | None = ...) -> bytes
- lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:427:18: note:     def export_key(self, *, format: str | None = ..., passphrase: str, pkcs: 8, protection: str, randfunc: (int) -> bytes | None = ..., prot_params: ProtParams) -> bytes
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:427:18: note:     MethodType export_key(self, *, format: str | None = ..., passphrase: str, pkcs: 8, protection: str, randfunc: (int) -> bytes | None = ..., prot_params: ProtParams) -> bytes
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: error: All overload variants require at least one argument  [call-overload]
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note: Possible overload variants:
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, format: str | None = ..., passphrase: str | None = ..., pkcs: int | None = ..., protection: str | None = ..., randfunc: (int) -> bytes | None = ...) -> bytes
+ lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:462:44: note:     def export_key(self: RsaKey, *, format: str | None = ..., passphrase: str, pkcs: 8, protection: str, randfunc: (int) -> bytes | None = ..., prot_params: ProtParams) -> bytes
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "MethodType (rsaObj: Untyped) -> None"

... (truncated 9985 lines) ...

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "MethodType (url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "MethodType (exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "MethodType (item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "MethodType () -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "MethodType (item: Untyped) -> None"
- aioredis/client.py:146:5: note:          def update(self, SupportsKeysAndGetItem[Untyped, Untyped], /, **kwargs: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, SupportsKeysAndGetItem[Untyped, Untyped], /, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          def update(self, Iterable[(Untyped, Untyped)], /, **kwargs: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, Iterable[(Untyped, Untyped)], /, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          def update(self, **kwargs: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          def update(self, data: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, data: Untyped) -> None
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "MethodType ((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "MethodType ((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "MethodType (Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "MethodType (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "MethodType (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "MethodType (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "MethodType (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "MethodType (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 455 lines) ...

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "MethodType (int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "MethodType (int =) -> Untyped"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:154:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:154:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:156:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:158:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:160:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:162:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:166:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:168:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:169:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:181:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:215:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:226:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:228:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:228:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:233:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:243:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:245:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:247:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:261:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:293:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:301:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:326:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:332:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:346:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:350:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:358:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:376:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:415:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:450:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:489:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:489:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:     Expected:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:     Got:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/uop_id_generator.py:57:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/uop_id_generator.py:57:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/uop_id_generator.py:57:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:     Expected:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/uop_id_generator.py:57:21: note:     Got:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/tier2_generator.py:175:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/tier2_generator.py:175:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/tier2_generator.py:175:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/tier2_generator.py:175:21: note:     Expected:
+ Tools/cases_generator/tier2_generator.py:175:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/tier2_generator.py:175:21: note:     Got:
+ Tools/cases_generator/tier2_generator.py:175:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/tier1_generator.py:170:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/tier1_generator.py:170:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/tier1_generator.py:170:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/tier1_generator.py:170:21: note:     Expected:
+ Tools/cases_generator/tier1_generator.py:170:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/tier1_generator.py:170:21: note:     Got:
+ Tools/cases_generator/tier1_generator.py:170:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/target_generator.py:36:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/target_generator.py:36:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/target_generator.py:36:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/target_generator.py:36:21: note:     Expected:
+ Tools/cases_generator/target_generator.py:36:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/target_generator.py:36:21: note:     Got:
+ Tools/cases_generator/target_generator.py:36:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/py_metadata_generator.py:80:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/py_metadata_generator.py:80:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/py_metadata_generator.py:80:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:     Expected:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:     Got:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:     Expected:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:     Got:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/opcode_id_generator.py:48:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/opcode_id_generator.py:48:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/opcode_id_generator.py:48:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:     Expected:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:     Got:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]```</details>

... (truncated 52811 lines) ...

github-actions[bot] avatar Jan 24 '24 23:01 github-actions[bot]

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

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "MethodType (int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "MethodType (int =) -> Untyped"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:154:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:154:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:156:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:158:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:160:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:162:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:166:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:168:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:169:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:181:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:215:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:226:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:228:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:228:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:233:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:243:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:245:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:247:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:261:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:293:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:301:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:326:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:332:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:346:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:350:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:358:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:376:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:415:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:450:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:489:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:489:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:     Expected:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:     Got:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/uop_id_generator.py:57:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/uop_id_generator.py:57:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/uop_id_generator.py:57:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:     Expected:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/uop_id_generator.py:57:21: note:     Got:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/tier2_generator.py:175:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/tier2_generator.py:175:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/tier2_generator.py:175:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/tier2_generator.py:175:21: note:     Expected:
+ Tools/cases_generator/tier2_generator.py:175:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/tier2_generator.py:175:21: note:     Got:
+ Tools/cases_generator/tier2_generator.py:175:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/tier1_generator.py:170:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/tier1_generator.py:170:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/tier1_generator.py:170:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/tier1_generator.py:170:21: note:     Expected:
+ Tools/cases_generator/tier1_generator.py:170:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/tier1_generator.py:170:21: note:     Got:
+ Tools/cases_generator/tier1_generator.py:170:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/target_generator.py:36:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/target_generator.py:36:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/target_generator.py:36:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/target_generator.py:36:21: note:     Expected:
+ Tools/cases_generator/target_generator.py:36:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/target_generator.py:36:21: note:     Got:
+ Tools/cases_generator/target_generator.py:36:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/py_metadata_generator.py:80:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/py_metadata_generator.py:80:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/py_metadata_generator.py:80:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:     Expected:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:     Got:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:     Expected:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:     Got:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/opcode_id_generator.py:48:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/opcode_id_generator.py:48:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/opcode_id_generator.py:48:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:     Expected:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:     Got:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "MethodType (attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "MethodType (attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "MethodType (Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "MethodType (message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "MethodType (node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "MethodType (children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "MethodType (character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "MethodType (character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "MethodType (Untyped) -> None"
- parso/python/errors.py:231:12: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/python/errors.py:231:12: note:     [_T] __init__(self) -> list[_T@list]
- parso/python/errors.py:231:12: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/python/errors.py:231:12: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "MethodType (typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "MethodType (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "MethodType (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:395:39: error: Expression type contains "Any" (has type "(node: Untyped, message: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:395:39: error: Expression type contains "Any" (has type "MethodType (node: Untyped, message: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:398:63: error: Expression type contains "Any" (has type "(node: Untyped, message: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:398:63: error: Expression type contains "Any" (has type "MethodType (node: Untyped, message: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "MethodType (node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "MethodType (spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "MethodType (child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "MethodType (spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "MethodType (node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "MethodType (node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "MethodType () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:557:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:557:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:557:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:557:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:569:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:569:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:569:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:569:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:582:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:582:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:582:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:582:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:604:5: note:          def get_node(self, node: Untyped) -> None
+ parso/python/errors.py:604:5: note:          MethodType get_node(self, node: Untyped) -> None
- parso/python/errors.py:604:5: note:          def get_node(self, leaf: Untyped) -> None
+ parso/python/errors.py:604:5: note:          MethodType get_node(self, leaf: Untyped) -> None
- parso/python/errors.py:607:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:607:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:607:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:607:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:617:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:617:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:617:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:617:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:631:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:631:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:631:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:631:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:664:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:664:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:664:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:664:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:680:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:680:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:680:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:680:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:692:5: note:          def get_node(self, node: Untyped) -> None
+ parso/python/errors.py:692:5: note:          MethodType get_node(self, node: Untyped) -> None
- parso/python/errors.py:692:5: note:          def get_node(self, leaf: Untyped) -> None
+ parso/python/errors.py:692:5: note:          MethodType get_node(self, leaf: Untyped) -> None
- parso/python/errors.py:695:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:695:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:695:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:695:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "MethodType (string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "MethodType (string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "MethodType (Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:995:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:995:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:995:5: note:          def is_issue(self, try_stmt: Untyped) -> None
+ parso/python/errors.py:995:5: note:          MethodType is_issue(self, try_stmt: Untyped) -> None
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "MethodType (children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "MethodType (format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1038:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1038:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1038:5: note:          def is_issue(self, fstring: Untyped) -> None
+ parso/python/errors.py:1038:5: note:          MethodType is_issue(self, fstring: Untyped) -> None
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "MethodType (children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "MethodType (fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1232:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1232:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1232:5: note:          def is_issue(self, with_item: Untyped) -> None
+ parso/python/errors.py:1232:5: note:          MethodType is_issue(self, with_item: Untyped) -> None
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1238:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1238:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1238:5: note:          def is_issue(self, del_stmt: Untyped) -> None
+ parso/python/errors.py:1238:5: note:          MethodType is_issue(self, del_stmt: Untyped) -> None
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1247:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1247:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1247:5: note:          def is_issue(self, expr_list: Untyped) -> None
+ parso/python/errors.py:1247:5: note:          MethodType is_issue(self, expr_list: Untyped) -> None
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1254:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1254:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1254:5: note:          def is_issue(self, for_stmt: Untyped) -> None
+ parso/python/errors.py:1254:5: note:          MethodType is_issue(self, for_stmt: Untyped) -> None
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1265:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1265:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1265:5: note:          def is_issue(self, namedexpr_test: Untyped) -> None
+ parso/python/errors.py:1265:5: note:          MethodType is_issue(self, namedexpr_test: Untyped) -> None
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "MethodType (typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "MethodType (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "MethodType (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:665:13: note:     def __setitem__(self, SupportsIndex, NodeOrLeaf, /) -> None
+ parso/python/tree.py:665:13: note:     MethodType __setitem__(self, SupportsIndex, NodeOrLeaf, /) -> None
- parso/python/tree.py:665:13: note:     def __setitem__(self, slice, Iterable[NodeOrLeaf], /) -> None
+ parso/python/tree.py:665:13: note:     MethodType __setitem__(self, slice, Iterable[NodeOrLeaf], /) -> None
- parso/python/tree.py:716:36: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/python/tree.py:716:36: note:     [_T] __init__(self) -> list[_T@list]
- parso/python/tree.py:716:36: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/python/tree.py:716:36: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "MethodType (children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "MethodType () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "MethodType () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "MethodType () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "MethodType (next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "MethodType () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:73:16: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/parser.py:73:16: note:     [_T] __init__(self) -> list[_T@list]
- parso/parser.py:73:16: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/parser.py:73:16: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "MethodType (token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "MethodType (nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "MethodType (token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "MethodType (Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "MethodType (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "MethodType (nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "MethodType (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "MethodType (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "MethodType (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "MethodType (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "MethodType (spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "MethodType (spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "MethodType (part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "MethodType (part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:766:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/pep8.py:766:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/pep8.py:766:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/pep8.py:766:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/parser.py:101:5: note:          def convert_leaf(self, type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
+ parso/python/parser.py:101:5: note:          MethodType convert_leaf(self, type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
- parso/python/parser.py:101:5: note:          def convert_leaf(self, type: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
+ parso/python/parser.py:101:5: note:          MethodType convert_leaf(self, type: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "MethodType (token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "MethodType (start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "MethodType (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "MethodType (old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "MethodType (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "MethodType (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "MethodType (suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "MethodType (tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "MethodType (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "MethodType (child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "MethodType (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "MethodType (indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "MethodType (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:17: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/python/diff.py:726:17: note:     [_T] __init__(self) -> list[_T@list]
- parso/python/diff.py:726:17: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/python/diff.py:726:17: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "MethodType (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "MethodType (node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "MethodType (node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "MethodType (normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "MethodType (normalizer_config: Untyped) -> None"
- parso/grammar.py:220:23: error: Expression type contains "Any" (has type "(lines: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/grammar.py:220:23: error: Expression type contains "Any" (has type "MethodType (lines: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "MethodType (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "MethodType (url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "MethodType (exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "MethodType (item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "MethodType () -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "MethodType (item: Untyped) -> None"
- aioredis/client.py:146:5: note:          def update(self, SupportsKeysAndGetItem[Untyped, Untyped], /, **kwargs: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, SupportsKeysAndGetItem[Untyped, Untyped], /, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          def update(self, Iterable[(Untyped, Untyped)], /, **kwargs: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, Iterable[(Untyped, Untyped)], /, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          def update(self, **kwargs: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          def update(self, data: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, data: Untyped) -> None
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "MethodType ((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "MethodType ((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "MethodType (Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "MethodType (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "MethodType (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "MethodType (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "MethodType (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "MethodType (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 455 lines) ...

pycryptodome (https://github.com/Legrandin/pycryptodome)
+ lib/Crypto/SelfTest/Protocol/test_KDF.py:789: error: INTERNAL ERROR -- Please try using mypy master on GitHub:
+ https://kotlinisland.github.io/basedmypy/common_issues.html#using-a-development-mypy-build
+ Please report a bug at https://github.com/KotlinIsland/basedmypy/issues
+ version: 2.3.0+dev.9199acc7d1b075ade91f4ec2189e59c853da3239
+ lib/Crypto/SelfTest/Protocol/test_KDF.py:789: : note: use --pdb to drop into pdb
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "MethodType (Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:130:42: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:130:42: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:131:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:131:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:132:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:132:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:133:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:133:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:158:38: error: Expression type contains "Any" (has type "(population: Sequence[Untyped], k: int) -> list[Untyped]")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:158:38: error: Expression type contains "Any" (has type "MethodType (population: Sequence[Untyped], k: int) -> list[Untyped]")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     def [_T] __init__(self) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     [_T] __init__(self) -> list[_T@list]
- lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     def [_T] __init__(self) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     [_T] __init__(self) -> list[_T@list]
- lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         def update(self, data: bytes | bytearray | memoryview) -> BLAKE2b_Hash
+ lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> BLAKE2b_Hash
- lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         def update(self, data: bytes | bytearray | memoryview) -> BLAKE2s_Hash
+ lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> BLAKE2s_Hash
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     def __getitem__(self, SupportsIndex, /) -> (str, str, str, str, str, str)
+ lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     MethodType __getitem__(self, SupportsIndex, /) -> (str, str, str, str, str, str)
- lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     def __getitem__(self, slice, /) -> list[(str, str, str, str, str, str)]
+ lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     MethodType __getitem__(self, slice, /) -> list[(str, str, str, str, str, str)]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "MethodType (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"```</details>

... (truncated 52807 lines) ...

github-actions[bot] avatar Jan 26 '24 07:01 github-actions[bot]

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

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "MethodType (int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "MethodType (int =) -> Untyped"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:154:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:154:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:156:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:158:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:160:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:162:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:166:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:168:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:169:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:181:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:215:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:226:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:228:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:228:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:233:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:243:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:245:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:247:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:261:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:293:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:301:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:326:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:332:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:346:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:350:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:358:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:376:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:415:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:450:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:489:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:489:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:     Expected:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:     Got:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/uop_id_generator.py:57:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/uop_id_generator.py:57:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/uop_id_generator.py:57:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:     Expected:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/uop_id_generator.py:57:21: note:     Got:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/tier2_generator.py:175:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/tier2_generator.py:175:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/tier2_generator.py:175:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/tier2_generator.py:175:21: note:     Expected:
+ Tools/cases_generator/tier2_generator.py:175:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/tier2_generator.py:175:21: note:     Got:
+ Tools/cases_generator/tier2_generator.py:175:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/tier1_generator.py:170:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/tier1_generator.py:170:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/tier1_generator.py:170:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/tier1_generator.py:170:21: note:     Expected:
+ Tools/cases_generator/tier1_generator.py:170:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/tier1_generator.py:170:21: note:     Got:
+ Tools/cases_generator/tier1_generator.py:170:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/target_generator.py:36:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/target_generator.py:36:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/target_generator.py:36:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/target_generator.py:36:21: note:     Expected:
+ Tools/cases_generator/target_generator.py:36:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/target_generator.py:36:21: note:     Got:
+ Tools/cases_generator/target_generator.py:36:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/py_metadata_generator.py:80:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/py_metadata_generator.py:80:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/py_metadata_generator.py:80:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:     Expected:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:     Got:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:     Expected:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:     Got:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/opcode_id_generator.py:48:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/opcode_id_generator.py:48:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/opcode_id_generator.py:48:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:     Expected:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:         MethodType __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:     Got:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:         __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "MethodType (url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "MethodType (exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "MethodType (item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "MethodType () -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "MethodType (item: Untyped) -> None"
- aioredis/client.py:146:5: note:          def update(self, SupportsKeysAndGetItem[Untyped, Untyped], /, **kwargs: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, SupportsKeysAndGetItem[Untyped, Untyped], /, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          def update(self, Iterable[(Untyped, Untyped)], /, **kwargs: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, Iterable[(Untyped, Untyped)], /, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          def update(self, **kwargs: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, **kwargs: Untyped) -> None
- aioredis/client.py:146:5: note:          def update(self, data: Untyped) -> None
+ aioredis/client.py:146:5: note:          MethodType update(self, data: Untyped) -> None
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "MethodType ((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "MethodType ((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "MethodType (Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "MethodType (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "MethodType (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "MethodType (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "MethodType (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "MethodType (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 455 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "MethodType (attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "MethodType (attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "MethodType (Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "MethodType (message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "MethodType (node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "MethodType (children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "MethodType (character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "MethodType (character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "MethodType (Untyped) -> None"
- parso/python/errors.py:231:12: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/python/errors.py:231:12: note:     [_T] __init__(self) -> list[_T@list]
- parso/python/errors.py:231:12: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/python/errors.py:231:12: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "MethodType (typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "MethodType (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "MethodType (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:395:39: error: Expression type contains "Any" (has type "(node: Untyped, message: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:395:39: error: Expression type contains "Any" (has type "MethodType (node: Untyped, message: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:398:63: error: Expression type contains "Any" (has type "(node: Untyped, message: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:398:63: error: Expression type contains "Any" (has type "MethodType (node: Untyped, message: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "MethodType (node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "MethodType (spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "MethodType (child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "MethodType (spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "MethodType (node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "MethodType (node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "MethodType () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:557:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:557:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:557:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:557:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:569:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:569:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:569:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:569:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:582:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:582:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:582:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:582:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:604:5: note:          def get_node(self, node: Untyped) -> None
+ parso/python/errors.py:604:5: note:          MethodType get_node(self, node: Untyped) -> None
- parso/python/errors.py:604:5: note:          def get_node(self, leaf: Untyped) -> None
+ parso/python/errors.py:604:5: note:          MethodType get_node(self, leaf: Untyped) -> None
- parso/python/errors.py:607:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:607:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:607:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:607:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:617:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:617:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:617:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:617:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:631:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:631:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:631:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:631:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:664:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:664:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:664:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:664:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:680:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:680:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:680:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:680:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:692:5: note:          def get_node(self, node: Untyped) -> None
+ parso/python/errors.py:692:5: note:          MethodType get_node(self, node: Untyped) -> None
- parso/python/errors.py:692:5: note:          def get_node(self, leaf: Untyped) -> None
+ parso/python/errors.py:692:5: note:          MethodType get_node(self, leaf: Untyped) -> None
- parso/python/errors.py:695:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:695:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:695:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/errors.py:695:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "MethodType (string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "MethodType (string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "MethodType (Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:995:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:995:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:995:5: note:          def is_issue(self, try_stmt: Untyped) -> None
+ parso/python/errors.py:995:5: note:          MethodType is_issue(self, try_stmt: Untyped) -> None
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "MethodType (children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "MethodType (format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1038:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1038:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1038:5: note:          def is_issue(self, fstring: Untyped) -> None
+ parso/python/errors.py:1038:5: note:          MethodType is_issue(self, fstring: Untyped) -> None
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "MethodType (children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "MethodType (fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1232:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1232:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1232:5: note:          def is_issue(self, with_item: Untyped) -> None
+ parso/python/errors.py:1232:5: note:          MethodType is_issue(self, with_item: Untyped) -> None
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1238:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1238:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1238:5: note:          def is_issue(self, del_stmt: Untyped) -> None
+ parso/python/errors.py:1238:5: note:          MethodType is_issue(self, del_stmt: Untyped) -> None
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1247:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1247:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1247:5: note:          def is_issue(self, expr_list: Untyped) -> None
+ parso/python/errors.py:1247:5: note:          MethodType is_issue(self, expr_list: Untyped) -> None
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1254:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1254:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1254:5: note:          def is_issue(self, for_stmt: Untyped) -> None
+ parso/python/errors.py:1254:5: note:          MethodType is_issue(self, for_stmt: Untyped) -> None
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1265:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/errors.py:1265:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/errors.py:1265:5: note:          def is_issue(self, namedexpr_test: Untyped) -> None
+ parso/python/errors.py:1265:5: note:          MethodType is_issue(self, namedexpr_test: Untyped) -> None
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "MethodType (typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "MethodType (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "MethodType (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:665:13: note:     def __setitem__(self, SupportsIndex, NodeOrLeaf, /) -> None
+ parso/python/tree.py:665:13: note:     MethodType __setitem__(self, SupportsIndex, NodeOrLeaf, /) -> None
- parso/python/tree.py:665:13: note:     def __setitem__(self, slice, Iterable[NodeOrLeaf], /) -> None
+ parso/python/tree.py:665:13: note:     MethodType __setitem__(self, slice, Iterable[NodeOrLeaf], /) -> None
- parso/python/tree.py:716:36: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/python/tree.py:716:36: note:     [_T] __init__(self) -> list[_T@list]
- parso/python/tree.py:716:36: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/python/tree.py:716:36: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "MethodType (children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "MethodType () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "MethodType () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "MethodType () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "MethodType (next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "MethodType () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:73:16: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/parser.py:73:16: note:     [_T] __init__(self) -> list[_T@list]
- parso/parser.py:73:16: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/parser.py:73:16: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "MethodType (token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "MethodType (nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "MethodType (token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "MethodType (Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "MethodType (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "MethodType (nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "MethodType (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "MethodType (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "MethodType (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "MethodType (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "MethodType (spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "MethodType (spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "MethodType (part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "MethodType (part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:766:5: note:          def is_issue(self, node: Untyped) -> None
+ parso/python/pep8.py:766:5: note:          MethodType is_issue(self, node: Untyped) -> None
- parso/python/pep8.py:766:5: note:          def is_issue(self, leaf: Untyped) -> None
+ parso/python/pep8.py:766:5: note:          MethodType is_issue(self, leaf: Untyped) -> None
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/parser.py:101:5: note:          def convert_leaf(self, type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
+ parso/python/parser.py:101:5: note:          MethodType convert_leaf(self, type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
- parso/python/parser.py:101:5: note:          def convert_leaf(self, type: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
+ parso/python/parser.py:101:5: note:          MethodType convert_leaf(self, type: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "MethodType (token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "MethodType (start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "MethodType (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "MethodType (old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "MethodType (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "MethodType (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "MethodType (suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "MethodType (tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "MethodType (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "MethodType (child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "MethodType (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "MethodType (indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "MethodType (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:17: note:     def [_T] __init__(self) -> list[_T@list]
+ parso/python/diff.py:726:17: note:     [_T] __init__(self) -> list[_T@list]
- parso/python/diff.py:726:17: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ parso/python/diff.py:726:17: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "MethodType (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "MethodType (node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "MethodType (node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "MethodType (normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "MethodType (normalizer_config: Untyped) -> None"
- parso/grammar.py:220:23: error: Expression type contains "Any" (has type "(lines: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/grammar.py:220:23: error: Expression type contains "Any" (has type "MethodType (lines: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "MethodType (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

pycryptodome (https://github.com/Legrandin/pycryptodome)
+ lib/Crypto/SelfTest/Protocol/test_KDF.py:789: error: INTERNAL ERROR -- Please try using mypy master on GitHub:
+ https://kotlinisland.github.io/basedmypy/common_issues.html#using-a-development-mypy-build
+ Please report a bug at https://github.com/KotlinIsland/basedmypy/issues
+ version: 2.3.0+dev.a31f0fd3f9aeb46500ee96a90d0980fc614667a5
+ lib/Crypto/SelfTest/Protocol/test_KDF.py:789: : note: use --pdb to drop into pdb
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "MethodType (Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:130:42: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:130:42: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:131:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:131:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:132:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:132:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:133:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:133:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:158:38: error: Expression type contains "Any" (has type "(population: Sequence[Untyped], k: int) -> list[Untyped]")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:158:38: error: Expression type contains "Any" (has type "MethodType (population: Sequence[Untyped], k: int) -> list[Untyped]")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     def [_T] __init__(self) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     [_T] __init__(self) -> list[_T@list]
- lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:750:26: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     def [_T] __init__(self) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     [_T] __init__(self) -> list[_T@list]
- lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ lib/Crypto/SelfTest/Util/test_asn1.py:757:13: note:     [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
- lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         def update(self, data: bytes | bytearray | memoryview) -> BLAKE2b_Hash
+ lib/Crypto/SelfTest/Signature/test_pss.py:245:25: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> BLAKE2b_Hash
- lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         def update(self, bytes: Untyped) -> None
+ lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         MethodType update(self, bytes: Untyped) -> None
- lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         def update(self, data: bytes | bytearray | memoryview) -> BLAKE2s_Hash
+ lib/Crypto/SelfTest/Signature/test_pss.py:248:25: note:         MethodType update(self, data: bytes | bytearray | memoryview) -> BLAKE2s_Hash
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     def __getitem__(self, SupportsIndex, /) -> (str, str, str, str, str, str)
+ lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     MethodType __getitem__(self, SupportsIndex, /) -> (str, str, str, str, str, str)
- lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     def __getitem__(self, slice, /) -> list[(str, str, str, str, str, str)]
+ lib/Crypto/SelfTest/Signature/test_dss.py:627:17: note:     MethodType __getitem__(self, slice, /) -> list[(str, str, str, str, str, str)]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "MethodType (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"```</details>

... (truncated 52603 lines) ...

github-actions[bot] avatar Jan 26 '24 09:01 github-actions[bot]

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

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "MethodType (int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "MethodType (int =) -> Untyped"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:154:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:154:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:156:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:158:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:160:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:162:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:166:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:168:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:169:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:181:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:215:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:226:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:228:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:228:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:233:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:243:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:245:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:247:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:261:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:293:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:301:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:326:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:332:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:346:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:350:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:358:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:376:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:415:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:450:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:489:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:489:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:     Expected:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:         def __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:     Got:
+ Tools/cases_generator/uop_metadata_generator.py:56:21: note:         def __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/uop_id_generator.py:57:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/uop_id_generator.py:57:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/uop_id_generator.py:57:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:     Expected:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:         def __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/uop_id_generator.py:57:21: note:     Got:
+ Tools/cases_generator/uop_id_generator.py:57:21: note:         def __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/tier2_generator.py:175:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/tier2_generator.py:175:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/tier2_generator.py:175:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/tier2_generator.py:175:21: note:     Expected:
+ Tools/cases_generator/tier2_generator.py:175:21: note:         def __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/tier2_generator.py:175:21: note:     Got:
+ Tools/cases_generator/tier2_generator.py:175:21: note:         def __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/tier1_generator.py:170:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/tier1_generator.py:170:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/tier1_generator.py:170:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/tier1_generator.py:170:21: note:     Expected:
+ Tools/cases_generator/tier1_generator.py:170:21: note:         def __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/tier1_generator.py:170:21: note:     Got:
+ Tools/cases_generator/tier1_generator.py:170:21: note:         def __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/target_generator.py:36:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/target_generator.py:36:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/target_generator.py:36:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/target_generator.py:36:21: note:     Expected:
+ Tools/cases_generator/target_generator.py:36:21: note:         def __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/target_generator.py:36:21: note:     Got:
+ Tools/cases_generator/target_generator.py:36:21: note:         def __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/py_metadata_generator.py:80:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/py_metadata_generator.py:80:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/py_metadata_generator.py:80:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:     Expected:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:         def __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:     Got:
+ Tools/cases_generator/py_metadata_generator.py:80:21: note:         def __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:     Expected:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:         def __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:     Got:
+ Tools/cases_generator/opcode_metadata_generator.py:367:21: note:         def __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter
+ Tools/cases_generator/opcode_id_generator.py:48:21: error: Argument "formatter_class" to "ArgumentParser" has incompatible type "type[ArgumentDefaultsHelpFormatter]"; expected "_FormatterClass"  [arg-type]
+ Tools/cases_generator/opcode_id_generator.py:48:21: note: "ArgumentDefaultsHelpFormatter" has constructor incompatible with "__call__" of "_FormatterClass"
+ Tools/cases_generator/opcode_id_generator.py:48:21: note: Following member(s) of "ArgumentDefaultsHelpFormatter" have conflicts:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:     Expected:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:         def __call__(*, prog: str) -> HelpFormatter
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:     Got:
+ Tools/cases_generator/opcode_id_generator.py:48:21: note:         def __init__(prog: str, indent_increment: int = ..., max_help_position: int = ..., width: int | None = ...) -> ArgumentDefaultsHelpFormatter

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "MethodType (attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "MethodType (attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "MethodType (Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "MethodType (message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "MethodType (node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "MethodType (children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "MethodType (character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "MethodType (character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "MethodType (Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "MethodType (typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "MethodType (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "MethodType (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:395:39: error: Expression type contains "Any" (has type "(node: Untyped, message: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:395:39: error: Expression type contains "Any" (has type "MethodType (node: Untyped, message: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:398:63: error: Expression type contains "Any" (has type "(node: Untyped, message: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:398:63: error: Expression type contains "Any" (has type "MethodType (node: Untyped, message: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "MethodType (node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "MethodType (node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "MethodType (spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "MethodType (child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "MethodType (spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "MethodType (node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "MethodType (node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "MethodType () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "MethodType (string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "MethodType (string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "MethodType (Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "MethodType (children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "MethodType (format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "MethodType (children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "MethodType (fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "MethodType (node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "MethodType (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "MethodType (typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "MethodType (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "MethodType (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "MethodType (type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "MethodType (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "MethodType (msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "MethodType (*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "MethodType (Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "MethodType (children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "MethodType () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "MethodType () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "MethodType () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "MethodType (next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "MethodType () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "MethodType (token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "MethodType (nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "MethodType (token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "MethodType (Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "MethodType (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "MethodType (nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "MethodType (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "MethodType (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "MethodType (leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "MethodType (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "MethodType (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "MethodType (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "MethodType (spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "MethodType (spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "MethodType (part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "MethodType (part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "MethodType (node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "MethodType (token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "MethodType (start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "MethodType (typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "MethodType (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "MethodType (old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "MethodType (until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "MethodType (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "MethodType (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "MethodType (tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "MethodType (Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "MethodType (suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "MethodType (tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "MethodType (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "MethodType (child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "MethodType (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "MethodType (indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "MethodType (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "MethodType (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "MethodType (node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "MethodType (node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "MethodType (normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "MethodType (normalizer_config: Untyped) -> None"
- parso/grammar.py:220:23: error: Expression type contains "Any" (has type "(lines: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/grammar.py:220:23: error: Expression type contains "Any" (has type "MethodType (lines: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "MethodType (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "MethodType (Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "MethodType (x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:130:42: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:130:42: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:131:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:131:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:132:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:132:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:133:38: error: Expression type contains "Any" (has type "(x: Sequence[Untyped]) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:133:38: error: Expression type contains "Any" (has type "MethodType (x: Sequence[Untyped]) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "MethodType (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:158:38: error: Expression type contains "Any" (has type "(population: Sequence[Untyped], k: int) -> list[Untyped]")  [no-any-expr]
+ lib/Crypto/SelfTest/Random/test_random.py:158:38: error: Expression type contains "Any" (has type "MethodType (population: Sequence[Untyped], k: int) -> list[Untyped]")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "MethodType (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "MethodType (filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "MethodType (tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "MethodType (rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "MethodType (bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "MethodType (tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "MethodType (tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "MethodType (tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "MethodType (tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "MethodType (tv: Untyped, as_longs: int =) -> None"

... (truncated 914 lines) ...

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "MethodType (url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "MethodType (exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "MethodType (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "MethodType (item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "MethodType () -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "MethodType (item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "MethodType ((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "MethodType ((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "MethodType (Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "MethodType (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "MethodType (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "MethodType (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "MethodType (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "MethodType (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "MethodType (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 434 lines) ...

itsdangerous (https://github.com/pallets/itsdangerous)
- src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("(payload: str | bytes) -> Any")  [no-any-decorated]
+ src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("def (payload: str | bytes) -> Any")  [no-any-decorated]
- src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("(obj: Any, **kwargs: Any) -> str")  [no-any-decorated]
+ src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("def (obj: Any, **kwargs: Any) -> str")  [no-any-decorated]
- src/itsdangerous/encoding.py:45:17: error: Expression type contains "Any" (has type "(*v: Any) -> bytes")  [no-any-expr]
+ src/itsdangerous/encoding.py:45:17: error: Expression type contains "Any" (has type "MethodType (*v: Any) -> bytes")  [no-any-expr]

boostedblob (https://github.com/hauntsaninja/boostedblob)
- boostedblob/azure_auth.py:139:28: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/azure_auth.py:139:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/globals.py:59:52: error: "(T@TokenManager) -> Awaitable[(Any, float)]" has no attribute "__qualname__"  [attr-defined]
- boostedblob/globals.py:133:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:133:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "(_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "def (_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:146:2: error: Expression type contains "Any" (has type "(**kwargs: Any) -> Iterator[None]")  [no-any-expr]
+ boostedblob/globals.py:146:2: error: Expression type contains "Any" (has type "def (**kwargs: Any) -> Iterator[None]")  [no-any-expr]
- boostedblob/globals.py:147:1: error: Type of decorated function contains type "Any" ("(**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
+ boostedblob/globals.py:147:1: error: Type of decorated function contains type "Any" ("def (**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
- boostedblob/globals.py:186:6: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:186:6: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:187:5: error: Type of decorated function contains type "Any" ("(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
+ boostedblob/globals.py:187:5: error: Type of decorated function contains type "Any" ("def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
- boostedblob/globals.py:191:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:191:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:222:32: error: Expression type contains "Any" (has type "(loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
+ boostedblob/globals.py:222:32: error: Expression type contains "Any" (has type "def (loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
- boostedblob/request.py:24: error: Type of decorated function contains type "Any" ("(*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: Any = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ...) -> None")  [no-any-decorated]
+ boostedblob/request.py:24: error: Type of decorated function contains type "Any" ("def (*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: Any = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ...) -> None")  [no-any-decorated]
- boostedblob/path.py:385:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:385:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:431:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:431:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]```</details>

... (truncated 31738 lines) ...

github-actions[bot] avatar Feb 07 '24 16:02 github-actions[bot]

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

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:210:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:221:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:223:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:223:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:228:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:238:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:240:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:242:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:256:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:269:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:277:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:285:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:310:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:330:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:334:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:342:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:360:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:399:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:434:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:473:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:473:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

itsdangerous (https://github.com/pallets/itsdangerous)
- src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("(payload: str | bytes) -> Any")  [no-any-decorated]
+ src/itsdangerous/_json.py:9:5: error: Type of decorated function contains type "Any" ("def (payload: str | bytes) -> Any")  [no-any-decorated]
- src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("(obj: Any, **kwargs: Any) -> str")  [no-any-decorated]
+ src/itsdangerous/_json.py:13:5: error: Type of decorated function contains type "Any" ("def (obj: Any, **kwargs: Any) -> str")  [no-any-decorated]

boostedblob (https://github.com/hauntsaninja/boostedblob)
- boostedblob/azure_auth.py:139:28: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/azure_auth.py:139:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/globals.py:59:52: error: "(T@TokenManager) -> Awaitable[(Any, float)]" has no attribute "__qualname__"  [attr-defined]
- boostedblob/globals.py:133:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:133:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "(_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "def (_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:146:2: error: Expression type contains "Any" (has type "(**kwargs: Any) -> Iterator[None]")  [no-any-expr]
+ boostedblob/globals.py:146:2: error: Expression type contains "Any" (has type "def (**kwargs: Any) -> Iterator[None]")  [no-any-expr]
- boostedblob/globals.py:147:1: error: Type of decorated function contains type "Any" ("(**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
+ boostedblob/globals.py:147:1: error: Type of decorated function contains type "Any" ("def (**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
- boostedblob/globals.py:186:6: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:186:6: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:187:5: error: Type of decorated function contains type "Any" ("(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
+ boostedblob/globals.py:187:5: error: Type of decorated function contains type "Any" ("def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
- boostedblob/globals.py:191:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:191:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:222:32: error: Expression type contains "Any" (has type "(loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
+ boostedblob/globals.py:222:32: error: Expression type contains "Any" (has type "def (loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
- boostedblob/request.py:24: error: Type of decorated function contains type "Any" ("(*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: Any = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ...) -> None")  [no-any-decorated]
+ boostedblob/request.py:24: error: Type of decorated function contains type "Any" ("def (*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: Any = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ...) -> None")  [no-any-decorated]
- boostedblob/path.py:385:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:385:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:431:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:431:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:442:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:442:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:540:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:540:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:564:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:564:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/share.py:9:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/share.py:9:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:33:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:33:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:95:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:95:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:121:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:121:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "(path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-expr]
+ boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "def (path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-expr]
- boostedblob/read.py:177:1: error: Type of decorated function contains type "Any" ("(path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-decorated]
+ boostedblob/read.py:177:1: error: Type of decorated function contains type "Any" ("def (path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-decorated]
- boostedblob/listing.py:53:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:53:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:137:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:137:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:188:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:188:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:217:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:217:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:271:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:271:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:300:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:300:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/delete.py:26:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/delete.py:26:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/delete.py:144:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/delete.py:144:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:40:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:40:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:116:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:116:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:254:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:254:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/copying.py:42:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/copying.py:42:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/copying.py:148:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/copying.py:148:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/copying.py:393:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/copying.py:393:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/_recover.py:136:27: error: Expression type contains "Any" (has type "(b: dict[str, Any]) -> Any")  [no-any-expr]
+ boostedblob/_recover.py:136:27: error: Expression type contains "Any" (has type "def (b: dict[str, Any]) -> Any")  [no-any-expr]
- boostedblob/_recover.py:170:28: error: Expression type contains "Any" (has type "(b: dict[str, Any]) -> Any")  [no-any-expr]
+ boostedblob/_recover.py:170:28: error: Expression type contains "Any" (has type "def (b: dict[str, Any]) -> Any")  [no-any-expr]
- boostedblob/_recover.py:236:9: error: Expression type contains "Any" (has type "(p_vs: (AzurePath, list[dict[str, Any]])) -> Coroutine[Any, Any, str]")  [no-any-expr]
+ boostedblob/_recover.py:236:9: error: Expression type contains "Any" (has type "def (p_vs: (AzurePath, list[dict[str, Any]])) -> Coroutine[Any, Any, str]")  [no-any-expr]
- boostedblob/cli.py:19:6: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Any")  [no-any-expr]
+ boostedblob/cli.py:19:6: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Any")  [no-any-expr]
- boostedblob/cli.py:20:5: error: Type of decorated function contains type "Any" ("(*args: Any, **kwargs: Any) -> Any")  [no-any-decorated]
+ boostedblob/cli.py:20:5: error: Type of decorated function contains type "Any" ("def (*args: Any, **kwargs: Any) -> Any")  [no-any-decorated]
- boostedblob/cli.py:32:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Any")  [no-any-expr]
+ boostedblob/cli.py:32:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Any")  [no-any-expr]
- boostedblob/cli.py:96:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:96:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:132:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:132:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:158:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:158:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:224:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:224:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:233:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:233:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:262:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:262:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:273:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:273:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:291:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:291:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:310:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:310:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:320:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:320:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:328:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:328:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/cli.py:349:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/cli.py:349:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]```</details>

... (truncated 31390 lines) ...

github-actions[bot] avatar Feb 14 '24 23:02 github-actions[bot]

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

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:210:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:221:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:223:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:223:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:228:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:238:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:240:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:242:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:256:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:269:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:277:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:285:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:310:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:330:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:334:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:342:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:360:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:399:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:434:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:473:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:473:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

black (https://github.com/psf/black)
- src/blib2to3/pytree.py:567:20: note: Type is "def (node: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:567:20: note: Type is "(node: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:760:17: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:760:17: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:761:41: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:761:41: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:803:16: note: Type is "def (nodes: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:803:16: note: Type is "(nodes: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:807:21: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:807:21: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:836:19: note: Type is "def (nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
+ src/blib2to3/pytree.py:836:19: note: Type is "(nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
- src/blib2to3/pytree.py:846:33: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:846:33: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:853:33: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:853:33: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:915:35: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:915:35: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("(*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
+ src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("def (*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
- src/black/output.py:15:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:15:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:24:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:24:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:33:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:33:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/files.py:45:2: error: Expression type contains "Any" (has type "(path: Path | str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:45:2: error: Expression type contains "Any" (has type "def (path: Path | str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:127:2: error: Expression type contains "Any" (has type "(path_config: str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:127:2: error: Expression type contains "Any" (has type "def (path_config: str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:128:1: error: Type of decorated function contains type "Any" ("(path_config: str) -> dict[str, Any]")  [no-any-decorated]
+ src/black/files.py:128:1: error: Type of decorated function contains type "Any" ("def (path_config: str) -> dict[str, Any]")  [no-any-decorated]
- src/black/files.py:314:12: note: Type is "def (file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
+ src/black/files.py:314:12: note: Type is "(file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
- src/black/trans.py:397:5: error: Type of decorated function contains type "Any" ("(string: str) -> Any (from unimported type)")  [no-any-decorated]
+ src/black/trans.py:397:5: error: Type of decorated function contains type "Any" ("def (string: str) -> Any (from unimported type)")  [no-any-decorated]
- src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "(src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
+ src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "def (src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
- src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
- src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]

boostedblob (https://github.com/hauntsaninja/boostedblob)
- boostedblob/azure_auth.py:139:28: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/azure_auth.py:139:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/globals.py:59:52: error: "(T@TokenManager) -> Awaitable[(Any, float)]" has no attribute "__qualname__"  [attr-defined]
- boostedblob/globals.py:133:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:133:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "(_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "def (_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:146:2: error: Expression type contains "Any" (has type "(**kwargs: Any) -> Iterator[None]")  [no-any-expr]
+ boostedblob/globals.py:146:2: error: Expression type contains "Any" (has type "def (**kwargs: Any) -> Iterator[None]")  [no-any-expr]
- boostedblob/globals.py:147:1: error: Type of decorated function contains type "Any" ("(**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
+ boostedblob/globals.py:147:1: error: Type of decorated function contains type "Any" ("def (**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
- boostedblob/globals.py:186:6: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:186:6: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:187:5: error: Type of decorated function contains type "Any" ("(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
+ boostedblob/globals.py:187:5: error: Type of decorated function contains type "Any" ("def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
- boostedblob/globals.py:191:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:191:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:222:32: error: Expression type contains "Any" (has type "(loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
+ boostedblob/globals.py:222:32: error: Expression type contains "Any" (has type "def (loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
- boostedblob/request.py:24: error: Type of decorated function contains type "Any" ("(*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: Any = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ...) -> None")  [no-any-decorated]
+ boostedblob/request.py:24: error: Type of decorated function contains type "Any" ("def (*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: Any = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ...) -> None")  [no-any-decorated]
- boostedblob/path.py:385:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:385:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:431:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:431:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:442:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:442:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:540:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:540:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:564:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:564:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/share.py:9:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/share.py:9:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:33:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:33:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:95:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:95:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:121:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:121:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "(path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-expr]
+ boostedblob/read.py:176:2: error: Expression type contains "Any" (has type "def (path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-expr]
- boostedblob/read.py:177:1: error: Type of decorated function contains type "Any" ("(path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-decorated]
+ boostedblob/read.py:177:1: error: Type of decorated function contains type "Any" ("def (path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-decorated]
- boostedblob/listing.py:53:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:53:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:137:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:137:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:188:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:188:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:217:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:217:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:271:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:271:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:300:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:300:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/delete.py:26:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]```</details>

... (truncated 31392 lines) ...

github-actions[bot] avatar Feb 17 '24 06:02 github-actions[bot]

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

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
+ aioredis/connection.py:247:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ aioredis/connection.py:247:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ aioredis/connection.py:677:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:1017:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ aioredis/connection.py:1021:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ aioredis/connection.py:1025:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ aioredis/connection.py:1029:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ aioredis/connection.py:1033:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 437 lines) ...

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:170:18: note: Type is "def (data: Untyped) -> None"
+ lib/Crypto/SelfTest/Hash/common.py:170:18: note: Type is "(data: Untyped) -> None"
- lib/Crypto/SelfTest/Hash/common.py:179:18: note: Type is "def (data: Untyped) -> None"
+ lib/Crypto/SelfTest/Hash/common.py:179:18: note: Type is "(data: Untyped) -> None"
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "def (y: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:775:58: error: Expression type contains "Any" (has type "(self: Untyped, scalar: Untyped=..., x: Untyped=..., y: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:775:58: error: Expression type contains "Any" (has type "def (self: Untyped, scalar: Untyped=..., x: Untyped=..., y: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:788:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:788:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:788:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:788:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:789:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:789:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:789:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:789:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:790:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:790:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:790:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:790:27: error: Expression type contains "Any" (has type "def (y: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:796:58: error: Expression type contains "Any" (has type "(self: Untyped, scalar: Untyped=..., x: Untyped=..., y: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:796:58: error: Expression type contains "Any" (has type "def (self: Untyped, scalar: Untyped=..., x: Untyped=..., y: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:809:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:809:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:809:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:809:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:810:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:810:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:810:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:810:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:811:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:811:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:811:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:811:27: error: Expression type contains "Any" (has type "def (y: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:817:58: error: Expression type contains "Any" (has type "(self: Untyped, scalar: Untyped=..., x: Untyped=..., y: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:817:58: error: Expression type contains "Any" (has type "def (self: Untyped, scalar: Untyped=..., x: Untyped=..., y: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:830:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:830:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:830:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:830:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:831:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:831:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:831:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:831:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:832:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:832:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:832:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:832:27: error: Expression type contains "Any" (has type "def (y: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:838:58: error: Expression type contains "Any" (has type "(self: Untyped, scalar: Untyped=..., x: Untyped=..., y: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:838:58: error: Expression type contains "Any" (has type "def (self: Untyped, scalar: Untyped=..., x: Untyped=..., y: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:851:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:851:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:851:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:851:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:852:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:852:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:852:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:852:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:853:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:853:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:853:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:853:27: error: Expression type contains "Any" (has type "def (y: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:859:58: error: Expression type contains "Any" (has type "(self: Untyped, scalar: Untyped=..., x: Untyped=..., y: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:859:58: error: Expression type contains "Any" (has type "def (self: Untyped, scalar: Untyped=..., x: Untyped=..., y: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_DSA.py:81:9: note: Type is "def (dsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_DSA.py:81:9: note: Type is "(dsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_DSA.py:83:9: note: Type is "def (dsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_DSA.py:83:9: note: Type is "(dsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_DSA.py:88:9: note: Type is "def (dsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_DSA.py:88:9: note: Type is "(dsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_DSA.py:90:9: note: Type is "def (dsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_DSA.py:90:9: note: Type is "(dsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_DSA.py:96:9: note: Type is "def (dsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_DSA.py:96:9: note: Type is "(dsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_DSA.py:102:9: note: Type is "def (dsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_DSA.py:102:9: note: Type is "(dsaObj: Untyped) -> None"

... (truncated 784 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
+ parso/normalizer.py:135:5: error: Invalid signature "(Issue, Untyped) -> None"  [misc]
+ parso/normalizer.py:138:5: error: Invalid signature "(Issue, Untyped) -> None"  [misc]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
+ parso/utils.py:142:5: error: Invalid signature "(PythonVersionInfo, Untyped) -> None"  [misc]
+ parso/utils.py:151:5: error: Invalid signature "(PythonVersionInfo, Untyped) -> None"  [misc]
+ parso/utils.py:158:5: error: Invalid signature "(PythonVersionInfo, Untyped) -> None"  [misc]
+ parso/tree.py: note: In class "NodeOrLeaf":
+ parso/tree.py:152:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/tree.py:152:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ parso/tree.py:163:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/tree.py:169:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/tree.py:175:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/tree.py:392:16: error: Missing positional argument "self" in call to "get_start_pos_of_prefix" of "NodeOrLeaf"  [call-arg]
+ parso/tree.py:392:16: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/tree.py:432:24: note: Type is "def (lower: Untyped, upper: Untyped) -> None"
+ parso/tree.py:432:24: note: Type is "(lower: Untyped, upper: Untyped) -> None"
- parso/tree.py:434:24: note: Type is "def (lower: Untyped, upper: Untyped) -> None"
+ parso/tree.py:434:24: note: Type is "(lower: Untyped, upper: Untyped) -> None"
- parso/tree.py:438:16: note: Type is "def (lower: Untyped, upper: Untyped) -> None"
+ parso/tree.py:438:16: note: Type is "(lower: Untyped, upper: Untyped) -> None"
+ parso/tree.py:441:16: error: Missing positional argument "self" in call to "get_first_leaf" of "NodeOrLeaf"  [call-arg]
+ parso/tree.py:444:16: error: Missing positional argument "self" in call to "get_last_leaf" of "NodeOrLeaf"  [call-arg]
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:350:25: note: Type is "def (message: Untyped) -> None"
+ parso/python/errors.py:350:25: note: Type is "(message: Untyped) -> None"
- parso/python/errors.py:358:21: note: Type is "def (message: Untyped) -> None"
+ parso/python/errors.py:358:21: note: Type is "(message: Untyped) -> None"
- parso/python/errors.py:364:21: note: Type is "def (message: Untyped) -> None"
+ parso/python/errors.py:364:21: note: Type is "(message: Untyped) -> None"
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:393:30: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:393:30: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:398:24: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:398:24: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:788:12: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:788:12: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:815:20: note: Type is "def (node: Untyped, ancestor: Untyped) -> None"
+ parso/python/errors.py:815:20: note: Type is "(node: Untyped, ancestor: Untyped) -> None"
- parso/python/errors.py:817:12: note: Type is "def (node: Untyped, ancestor: Untyped) -> None"
+ parso/python/errors.py:817:12: note: Type is "(node: Untyped, ancestor: Untyped) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:906:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1278:12: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:1278:12: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1303:25: note: Type is "def (comp_for: Untyped) -> None"
+ parso/python/errors.py:1303:25: note: Type is "(comp_for: Untyped) -> None"
- parso/python/errors.py:1309:22: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:1309:22: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
+ parso/python/tree.py:257:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:300:5: error: Invalid signature "(_StringComparisonMixin, Untyped) -> None"  [misc]
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:359:32: note: Type is "def (children: Untyped) -> None"
+ parso/python/tree.py:359:32: note: Type is "(children: Untyped) -> None"
- parso/python/tree.py:361:16: note: Type is "def (children: Untyped) -> None"
+ parso/python/tree.py:361:16: note: Type is "(children: Untyped) -> None"
- parso/python/tree.py:426:25: note: Type is "def (node: Untyped) -> None"
+ parso/python/tree.py:426:25: note: Type is "(node: Untyped) -> None"
- parso/python/tree.py:428:13: note: Type is "def (node: Untyped) -> None"
+ parso/python/tree.py:428:13: note: Type is "(node: Untyped) -> None"
+ parso/python/tree.py:441:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:569:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
- parso/python/tree.py:591:32: note: Type is "def (children: Untyped) -> None"
+ parso/python/tree.py:591:32: note: Type is "(children: Untyped) -> None"
- parso/python/tree.py:593:16: note: Type is "def (children: Untyped) -> None"
+ parso/python/tree.py:593:16: note: Type is "(children: Untyped) -> None"
- parso/python/tree.py:605:32: note: Type is "def (children: Untyped) -> None"
+ parso/python/tree.py:605:32: note: Type is "(children: Untyped) -> None"
- parso/python/tree.py:607:16: note: Type is "def (children: Untyped) -> None"
+ parso/python/tree.py:607:16: note: Type is "(children: Untyped) -> None"
- parso/python/tree.py:619:32: note: Type is "def (children: Untyped) -> None"
+ parso/python/tree.py:619:32: note: Type is "(children: Untyped) -> None"
- parso/python/tree.py:621:16: note: Type is "def (children: Untyped) -> None"
+ parso/python/tree.py:621:16: note: Type is "(children: Untyped) -> None"
+ parso/python/tree.py:629:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:667:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:677:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:850:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:905:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:961:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:969:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:985:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
+ parso/python/tree.py:1097:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:1108:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:1121:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:1143:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ parso/python/tree.py:1156:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1243:5: error: Invalid signature "(UsedNamesMapping, Untyped) -> None"  [misc]
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:107:5: error: Invalid signature "(DFAState[_TokenTypeT@DFAState], Untyped) -> None"  [misc]
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/parser.py:81:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:595:13: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:595:13: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:601:17: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:601:17: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:604:17: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:604:17: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:608:17: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:608:17: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:612:17: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:612:17: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:633:25: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:633:25: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:635:25: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:635:25: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:641:21: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:641:21: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:647:21: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:647:21: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:650:21: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:650:21: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:652:17: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:652:17: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:667:25: note: Type is "def (*args: Untyped) -> None"
+ parso/python/pep8.py:667:25: note: Type is "(*args: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:157:23: note: Type is "def (stack: Untyped) -> None"
+ parso/python/parser.py:157:23: note: Type is "(stack: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
+ parso/python/diff.py:601:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

isort (https://github.com/pycqa/isort)
- isort/sorting.py:116:24: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:116:24: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
- isort/sorting.py:122:32: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:122:32: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
+ isort/wrap_modes.py:39:17: error: "(...) -> str" has no attribute "__name__"  [attr-defined]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/settings.py:140: error: Type of decorated function contains type "Any" ("(*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]```</details>

... (truncated 31772 lines) ...

github-actions[bot] avatar Mar 04 '24 16:03 github-actions[bot]

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

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

black (https://github.com/psf/black)
- src/blib2to3/pytree.py:570:20: note: Type is "def (node: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:570:20: note: Type is "(node: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:763:17: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:763:17: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:764:41: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:764:41: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:806:16: note: Type is "def (nodes: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:806:16: note: Type is "(nodes: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:810:21: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:810:21: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:839:19: note: Type is "def (nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
+ src/blib2to3/pytree.py:839:19: note: Type is "(nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
- src/blib2to3/pytree.py:849:33: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:849:33: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:856:33: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:856:33: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:918:35: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:918:35: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("(*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
+ src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("def (*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
- src/black/output.py:15:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:15:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:24:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:24:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:33:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:33:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/files.py:45:2: error: Expression type contains "Any" (has type "(path: Path | str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:45:2: error: Expression type contains "Any" (has type "def (path: Path | str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:127:2: error: Expression type contains "Any" (has type "(path_config: str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:127:2: error: Expression type contains "Any" (has type "def (path_config: str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:128:1: error: Type of decorated function contains type "Any" ("(path_config: str) -> dict[str, Any]")  [no-any-decorated]
+ src/black/files.py:128:1: error: Type of decorated function contains type "Any" ("def (path_config: str) -> dict[str, Any]")  [no-any-decorated]
- src/black/files.py:314:12: note: Type is "def (file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
+ src/black/files.py:314:12: note: Type is "(file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
- src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "(src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
+ src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "def (src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
- src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
- src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:82:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:82:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:291:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:291:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:402:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:402:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:421:19: note: Type is "def (magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
+ dulwich/objects.py:421:19: note: Type is "(magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"```</details>

... (truncated 31747 lines) ...

github-actions[bot] avatar Mar 18 '24 14:03 github-actions[bot]

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

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

black (https://github.com/psf/black)
- src/blib2to3/pytree.py:570:20: note: Type is "def (node: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:570:20: note: Type is "(node: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:763:17: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:763:17: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:764:41: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:764:41: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:806:16: note: Type is "def (nodes: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:806:16: note: Type is "(nodes: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:810:21: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:810:21: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:839:19: note: Type is "def (nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
+ src/blib2to3/pytree.py:839:19: note: Type is "(nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
- src/blib2to3/pytree.py:849:33: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:849:33: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:856:33: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:856:33: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:918:35: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:918:35: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("(*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
+ src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("def (*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
- src/black/output.py:15:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:15:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:24:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:24:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:33:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:33:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/files.py:45:2: error: Expression type contains "Any" (has type "(path: Path | str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:45:2: error: Expression type contains "Any" (has type "def (path: Path | str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:127:2: error: Expression type contains "Any" (has type "(path_config: str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:127:2: error: Expression type contains "Any" (has type "def (path_config: str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:128:1: error: Type of decorated function contains type "Any" ("(path_config: str) -> dict[str, Any]")  [no-any-decorated]
+ src/black/files.py:128:1: error: Type of decorated function contains type "Any" ("def (path_config: str) -> dict[str, Any]")  [no-any-decorated]
- src/black/files.py:314:12: note: Type is "def (file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
+ src/black/files.py:314:12: note: Type is "(file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
- src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "(src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
+ src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "def (src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
- src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
- src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:82:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:82:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:291:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:291:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:402:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:402:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:421:19: note: Type is "def (magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
+ dulwich/objects.py:421:19: note: Type is "(magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"```</details>

... (truncated 31131 lines) ...

github-actions[bot] avatar Mar 29 '24 04:03 github-actions[bot]

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

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

pyjwt (https://github.com/jpadilla/pyjwt)
- jwt/algorithms.py:167:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, key: Any) -> Any")  [no-any-decorated]
+ jwt/algorithms.py:167:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, key: Any) -> Any")  [no-any-decorated]
- jwt/algorithms.py:174:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, msg: bytes, key: Any) -> bytes")  [no-any-decorated]
+ jwt/algorithms.py:174:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, msg: bytes, key: Any) -> bytes")  [no-any-decorated]
- jwt/algorithms.py:181:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, msg: bytes, key: Any, sig: bytes) -> bool")  [no-any-decorated]
+ jwt/algorithms.py:181:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, msg: bytes, key: Any, sig: bytes) -> bool")  [no-any-decorated]
+ jwt/algorithms.py: note: In class "HMACAlgorithm":
+ jwt/algorithms.py:250:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
+ jwt/algorithms.py:250:37: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ jwt/algorithms.py:251:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
+ jwt/algorithms.py:252:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
- jwt/api_jws.py:185:46: note: Type is "def () -> _collections_abc.dict_keys[str, Untyped]"
+ jwt/api_jws.py:185:46: note: Type is "() -> _collections_abc.dict_keys[str, Untyped]"
- jwt/api_jws.py:230:46: note: Type is "def () -> _collections_abc.dict_keys[str, Untyped]"
+ jwt/api_jws.py:230:46: note: Type is "() -> _collections_abc.dict_keys[str, Untyped]"
- jwt/api_jws.py:233:19: note: Type is "def (jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
+ jwt/api_jws.py:233:19: note: Type is "(jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
- jwt/api_jwt.py:151:19: note: Type is "def (jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
+ jwt/api_jwt.py:151:19: note: Type is "(jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
- jwt/api_jwt.py:162:9: note: Type is "def (payload: dict[str, Any], options: dict[str, Any], audience: Untyped =, issuer: Untyped =, leeway: float | datetime.timedelta =) -> None"
+ jwt/api_jwt.py:162:9: note: Type is "(payload: dict[str, Any], options: dict[str, Any], audience: Untyped =, issuer: Untyped =, leeway: float | datetime.timedelta =) -> None"

black (https://github.com/psf/black)
- src/blib2to3/pytree.py:570:20: note: Type is "def (node: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:570:20: note: Type is "(node: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:763:17: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:763:17: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:764:41: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:764:41: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:806:16: note: Type is "def (nodes: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:806:16: note: Type is "(nodes: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:810:21: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:810:21: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:839:19: note: Type is "def (nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
+ src/blib2to3/pytree.py:839:19: note: Type is "(nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
- src/blib2to3/pytree.py:849:33: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:849:33: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:856:33: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:856:33: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:918:35: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:918:35: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("(*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
+ src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("def (*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
- src/black/output.py:15:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:15:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:24:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:24:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:33:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:33:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/files.py:45:2: error: Expression type contains "Any" (has type "(path: Path | str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:45:2: error: Expression type contains "Any" (has type "def (path: Path | str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:127:2: error: Expression type contains "Any" (has type "(path_config: str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:127:2: error: Expression type contains "Any" (has type "def (path_config: str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:128:1: error: Type of decorated function contains type "Any" ("(path_config: str) -> dict[str, Any]")  [no-any-decorated]
+ src/black/files.py:128:1: error: Type of decorated function contains type "Any" ("def (path_config: str) -> dict[str, Any]")  [no-any-decorated]
- src/black/files.py:314:12: note: Type is "def (file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
+ src/black/files.py:314:12: note: Type is "(file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
- src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "(src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
+ src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "def (src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
- src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
- src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]

boostedblob (https://github.com/hauntsaninja/boostedblob)
- boostedblob/azure_auth.py:145:28: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/azure_auth.py:145:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/globals.py:63:52: error: "(T@TokenManager) -> Awaitable[(Any, float)]" has no attribute "__qualname__"  [attr-defined]
- boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:136:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:139:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:142:46: error: Expression type contains "Any" (has type "(_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:142:46: error: Expression type contains "Any" (has type "def (_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:218:2: error: Expression type contains "Any" (has type "(**kwargs: Any) -> Iterator[None]")  [no-any-expr]
+ boostedblob/globals.py:218:2: error: Expression type contains "Any" (has type "def (**kwargs: Any) -> Iterator[None]")  [no-any-expr]
- boostedblob/globals.py:219:1: error: Type of decorated function contains type "Any" ("(**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
+ boostedblob/globals.py:219:1: error: Type of decorated function contains type "Any" ("def (**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
- boostedblob/globals.py:262:6: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:262:6: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:263:5: error: Type of decorated function contains type "Any" ("(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
+ boostedblob/globals.py:263:5: error: Type of decorated function contains type "Any" ("def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
- boostedblob/globals.py:267:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:267:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:283:32: error: Expression type contains "Any" (has type "(loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
+ boostedblob/globals.py:283:32: error: Expression type contains "Any" (has type "def (loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
- boostedblob/request.py:84: error: Type of decorated function contains type "Any" ("(*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: dict[str, Any] | bytes | None = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ..., auth: (Request) -> Awaitable[RawRequest] | None = ...) -> None")  [no-any-decorated]
+ boostedblob/request.py:84: error: Type of decorated function contains type "Any" ("def (*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: dict[str, Any] | bytes | None = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ..., auth: (Request) -> Awaitable[RawRequest] | None = ...) -> None")  [no-any-decorated]
- boostedblob/path.py:384:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:384:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:428:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:428:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:439:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:439:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:535:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:535:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:559:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:559:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]```</details>

... (truncated 31160 lines) ...

github-actions[bot] avatar Mar 29 '24 10:03 github-actions[bot]

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

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:82:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:82:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:291:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:291:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:402:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:402:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:421:19: note: Type is "def (magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
+ dulwich/objects.py:421:19: note: Type is "(magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:769:15: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:782:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:782:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:783:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:783:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:784:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:784:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:794:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:794:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "(self: Tag, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "def (self: Tag, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "(entry: Untyped) -> bytes", variable has type "(entry: Untyped) -> None")  [assignment]
+ dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "def (entry: Untyped) -> bytes", variable has type "def (entry: Untyped) -> None")  [assignment]
- dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "(entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
+ dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "def (entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
- dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("(cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1090:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1090:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1344:13: note: Type is "def (Any (unannotated)) -> None"
+ dulwich/objects.py:1344:13: note: Type is "(Any (unannotated)) -> None"
- dulwich/objects.py:1344:29: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1344:29: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("(cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("def (cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1400:18: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1400:18: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1431:39: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1431:39: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1458:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1458:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1459:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1459:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1460:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1460:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1461:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1461:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1462:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1462:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "(self: Commit, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "def (self: Commit, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "(text: Untyped, strict: bool=...) -> None")  [no-any-expr]
+ dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "def (text: Untyped, strict: bool=...) -> None")  [no-any-expr]
- dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "(entries: Untyped, name_order: bool) -> None")  [no-any-expr]
+ dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "def (entries: Untyped, name_order: bool) -> None")  [no-any-expr]
- dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("(cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("def (cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
- dulwich/config.py:135:25: note: Type is "def (key: Untyped, default: Untyped =) -> None"
+ dulwich/config.py:135:25: note: Type is "(key: Untyped, default: Untyped =) -> None"
- dulwich/config.py:263:24: note: Type is "def (dict_in: Untyped =) -> None"
+ dulwich/config.py:263:24: note: Type is "(dict_in: Untyped =) -> None"
- dulwich/archive.py:57:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:57:17: note: Type is "(Untyped) -> None"
- dulwich/archive.py:62:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:62:17: note: Type is "(Untyped) -> None"
- dulwich/tests/test_mailmap.py:72:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:72:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:73:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:73:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"```</details>

... (truncated 31101 lines) ...

github-actions[bot] avatar Mar 31 '24 06:03 github-actions[bot]

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

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:82:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:82:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:291:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:291:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:402:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:402:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:421:19: note: Type is "def (magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
+ dulwich/objects.py:421:19: note: Type is "(magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:769:15: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:782:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:782:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:783:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:783:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:784:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:784:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:794:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:794:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "(self: Tag, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "def (self: Tag, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "(entry: Untyped) -> bytes", variable has type "(entry: Untyped) -> None")  [assignment]
+ dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "def (entry: Untyped) -> bytes", variable has type "def (entry: Untyped) -> None")  [assignment]
- dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "(entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
+ dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "def (entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
- dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("(cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1090:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1090:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1344:13: note: Type is "def (Any (unannotated)) -> None"
+ dulwich/objects.py:1344:13: note: Type is "(Any (unannotated)) -> None"
- dulwich/objects.py:1344:29: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1344:29: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("(cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("def (cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1400:18: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1400:18: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1431:39: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1431:39: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1458:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1458:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1459:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1459:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1460:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1460:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1461:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1461:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1462:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1462:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "(self: Commit, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "def (self: Commit, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "(text: Untyped, strict: bool=...) -> None")  [no-any-expr]
+ dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "def (text: Untyped, strict: bool=...) -> None")  [no-any-expr]
- dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "(entries: Untyped, name_order: bool) -> None")  [no-any-expr]
+ dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "def (entries: Untyped, name_order: bool) -> None")  [no-any-expr]
- dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("(cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("def (cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
- dulwich/config.py:135:25: note: Type is "def (key: Untyped, default: Untyped =) -> None"
+ dulwich/config.py:135:25: note: Type is "(key: Untyped, default: Untyped =) -> None"
- dulwich/config.py:263:24: note: Type is "def (dict_in: Untyped =) -> None"
+ dulwich/config.py:263:24: note: Type is "(dict_in: Untyped =) -> None"
- dulwich/archive.py:57:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:57:17: note: Type is "(Untyped) -> None"
- dulwich/archive.py:62:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:62:17: note: Type is "(Untyped) -> None"
- dulwich/tests/test_mailmap.py:72:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:72:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:73:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:73:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"```</details>

... (truncated 31102 lines) ...

github-actions[bot] avatar Apr 01 '24 06:04 github-actions[bot]

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

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

isort (https://github.com/pycqa/isort)
- isort/sorting.py:116:24: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:116:24: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
- isort/sorting.py:122:32: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:122:32: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
+ isort/wrap_modes.py:39:17: error: "(...) -> str" has no attribute "__name__"  [attr-defined]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/settings.py:140: error: Type of decorated function contains type "Any" ("(*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]
+ isort/settings.py:140: error: Type of decorated function contains type "Any" ("def (*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]
- isort/settings.py:710:5: error: Type of decorated function contains type "Any" ("(self: Config) -> (...) -> list[str]")  [no-any-decorated]
+ isort/settings.py:710:5: error: Type of decorated function contains type "Any" ("def (self: Config) -> (...) -> list[str]")  [no-any-decorated]
- isort/settings.py:730:16: error: Expression type contains "Any" (has type "(to_sort: Iterable[str], key: (str) -> Any | None=..., reverse: bool=...) -> list[str] | overloaded function | (...) -> list[str] | Any")  [no-any-expr]
+ isort/settings.py:730:16: error: Expression type contains "Any" (has type "def (to_sort: Iterable[str], key: (str) -> Any | None=..., reverse: bool=...) -> list[str] | overloaded function | (...) -> list[str] | Any")  [no-any-expr]
- isort/settings.py:752:12: error: Expression type contains "Any" (has type "(str) -> Any & (value: str) -> WrapModes | type[Any] | type[str]")  [no-any-expr]
+ isort/settings.py:752:12: error: Expression type contains "Any" (has type "(str) -> Any & def (value: str) -> WrapModes | type[Any] | type[str]")  [no-any-expr]
- isort/literal.py:84:12: error: Expression type contains "Any" (has type "(function: (Any, ISortPrettyPrinter) -> str) -> (Any, ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:84:12: error: Expression type contains "Any" (has type "def (function: (Any, ISortPrettyPrinter) -> str) -> (Any, ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:87:2: error: Expression type contains "Any" (has type "(value: dict[Any, Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:87:2: error: Expression type contains "Any" (has type "def (value: dict[Any, Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:92:2: error: Expression type contains "Any" (has type "(value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:92:2: error: Expression type contains "Any" (has type "def (value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:97:2: error: Expression type contains "Any" (has type "(value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:97:2: error: Expression type contains "Any" (has type "def (value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:102:2: error: Expression type contains "Any" (has type "(value: set[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:102:2: error: Expression type contains "Any" (has type "def (value: set[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:107:2: error: Expression type contains "Any" (has type "(value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str")  [no-any-expr]```</details>

... (truncated 31180 lines) ...

github-actions[bot] avatar Apr 01 '24 08:04 github-actions[bot]

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

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:82:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:82:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:291:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:291:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:402:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:402:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:421:19: note: Type is "def (magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
+ dulwich/objects.py:421:19: note: Type is "(magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:769:15: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:782:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:782:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:783:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:783:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:784:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:784:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:794:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:794:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "(self: Tag, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "def (self: Tag, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "(entry: Untyped) -> bytes", variable has type "(entry: Untyped) -> None")  [assignment]
+ dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "def (entry: Untyped) -> bytes", variable has type "def (entry: Untyped) -> None")  [assignment]
- dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "(entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
+ dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "def (entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
- dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("(cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1090:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1090:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1344:13: note: Type is "def (Any (unannotated)) -> None"
+ dulwich/objects.py:1344:13: note: Type is "(Any (unannotated)) -> None"
- dulwich/objects.py:1344:29: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1344:29: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("(cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("def (cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1400:18: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1400:18: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1431:39: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1431:39: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1458:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1458:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1459:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1459:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1460:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1460:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1461:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1461:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1462:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1462:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "(self: Commit, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "def (self: Commit, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "(text: Untyped, strict: bool=...) -> None")  [no-any-expr]
+ dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "def (text: Untyped, strict: bool=...) -> None")  [no-any-expr]
- dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "(entries: Untyped, name_order: bool) -> None")  [no-any-expr]
+ dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "def (entries: Untyped, name_order: bool) -> None")  [no-any-expr]
- dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("(cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("def (cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
- dulwich/config.py:135:25: note: Type is "def (key: Untyped, default: Untyped =) -> None"
+ dulwich/config.py:135:25: note: Type is "(key: Untyped, default: Untyped =) -> None"
- dulwich/config.py:263:24: note: Type is "def (dict_in: Untyped =) -> None"
+ dulwich/config.py:263:24: note: Type is "(dict_in: Untyped =) -> None"
- dulwich/archive.py:57:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:57:17: note: Type is "(Untyped) -> None"
- dulwich/archive.py:62:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:62:17: note: Type is "(Untyped) -> None"
- dulwich/tests/test_mailmap.py:72:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:72:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:73:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:73:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"```</details>

... (truncated 31129 lines) ...

github-actions[bot] avatar Apr 04 '24 10:04 github-actions[bot]

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

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:82:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:82:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:291:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:291:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:402:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:402:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:421:19: note: Type is "def (magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
+ dulwich/objects.py:421:19: note: Type is "(magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:769:15: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:782:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:782:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:783:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:783:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:784:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:784:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:794:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:794:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "(self: Tag, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "def (self: Tag, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "(entry: Untyped) -> bytes", variable has type "(entry: Untyped) -> None")  [assignment]
+ dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "def (entry: Untyped) -> bytes", variable has type "def (entry: Untyped) -> None")  [assignment]
- dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "(entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
+ dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "def (entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
- dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("(cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1090:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1090:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1344:13: note: Type is "def (Any (unannotated)) -> None"
+ dulwich/objects.py:1344:13: note: Type is "(Any (unannotated)) -> None"
- dulwich/objects.py:1344:29: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1344:29: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("(cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("def (cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1400:18: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1400:18: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1431:39: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1431:39: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1458:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1458:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1459:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1459:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1460:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1460:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1461:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1461:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1462:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1462:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "(self: Commit, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "def (self: Commit, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "(text: Untyped, strict: bool=...) -> None")  [no-any-expr]
+ dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "def (text: Untyped, strict: bool=...) -> None")  [no-any-expr]
- dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "(entries: Untyped, name_order: bool) -> None")  [no-any-expr]
+ dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "def (entries: Untyped, name_order: bool) -> None")  [no-any-expr]
- dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("(cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("def (cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
- dulwich/config.py:135:25: note: Type is "def (key: Untyped, default: Untyped =) -> None"
+ dulwich/config.py:135:25: note: Type is "(key: Untyped, default: Untyped =) -> None"
- dulwich/config.py:263:24: note: Type is "def (dict_in: Untyped =) -> None"
+ dulwich/config.py:263:24: note: Type is "(dict_in: Untyped =) -> None"
- dulwich/archive.py:57:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:57:17: note: Type is "(Untyped) -> None"
- dulwich/archive.py:62:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:62:17: note: Type is "(Untyped) -> None"
- dulwich/tests/test_mailmap.py:72:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:72:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:73:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:73:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"```</details>

... (truncated 31129 lines) ...

github-actions[bot] avatar Apr 04 '24 23:04 github-actions[bot]

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

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

isort (https://github.com/pycqa/isort)
- isort/sorting.py:116:24: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:116:24: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
- isort/sorting.py:122:32: error: Expression type contains "Any" (has type "(text: str) -> list[Any]")  [no-any-expr]
+ isort/sorting.py:122:32: error: Expression type contains "Any" (has type "def (text: str) -> list[Any]")  [no-any-expr]
+ isort/wrap_modes.py:39:17: error: "(...) -> str" has no attribute "__name__"  [attr-defined]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:45:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:86:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:115:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:168:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:220:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:225:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:234:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:241:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:261:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:269:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:309:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(function: (...) -> str) -> (...) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (function: (...) -> str) -> (...) -> str")  [no-any-expr]
- isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "(**interface: Any) -> str")  [no-any-expr]
+ isort/wrap_modes.py:365:2: error: Expression type contains "Any" (has type "def (**interface: Any) -> str")  [no-any-expr]
- isort/settings.py:140: error: Type of decorated function contains type "Any" ("(*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]
+ isort/settings.py:140: error: Type of decorated function contains type "Any" ("def (*, py_version: str = ..., force_to_top: frozenset[str] = ..., skip: frozenset[str] = ..., extend_skip: frozenset[str] = ..., skip_glob: frozenset[str] = ..., extend_skip_glob: frozenset[str] = ..., skip_gitignore: bool = ..., line_length: int = ..., wrap_length: int = ..., line_ending: str = ..., sections: tuple[str, ...] = ..., no_sections: bool = ..., known_future_library: frozenset[str] = ..., known_third_party: frozenset[str] = ..., known_first_party: frozenset[str] = ..., known_local_folder: frozenset[str] = ..., known_standard_library: frozenset[str] = ..., extra_standard_library: frozenset[str] = ..., known_other: dict[str, frozenset[str]] = ..., multi_line_output: WrapModes = ..., forced_separate: tuple[str, ...] = ..., indent: str = ..., comment_prefix: str = ..., length_sort: bool = ..., length_sort_straight: bool = ..., length_sort_sections: frozenset[str] = ..., add_imports: frozenset[str] = ..., remove_imports: frozenset[str] = ..., append_only: bool = ..., reverse_relative: bool = ..., force_single_line: bool = ..., single_line_exclusions: tuple[str, ...] = ..., default_section: str = ..., import_headings: dict[str, str] = ..., import_footers: dict[str, str] = ..., balanced_wrapping: bool = ..., use_parentheses: bool = ..., order_by_type: bool = ..., atomic: bool = ..., lines_before_imports: int = ..., lines_after_imports: int = ..., lines_between_sections: int = ..., lines_between_types: int = ..., combine_as_imports: bool = ..., combine_star: bool = ..., include_trailing_comma: bool = ..., from_first: bool = ..., verbose: bool = ..., quiet: bool = ..., force_adds: bool = ..., force_alphabetical_sort_within_sections: bool = ..., force_alphabetical_sort: bool = ..., force_grid_wrap: int = ..., force_sort_within_sections: bool = ..., lexicographical: bool = ..., group_by_package: bool = ..., ignore_whitespace: bool = ..., no_lines_before: frozenset[str] = ..., no_inline_sort: bool = ..., ignore_comments: bool = ..., case_sensitive: bool = ..., sources: tuple[dict[str, Any], ...] = ..., virtual_env: str = ..., conda_env: str = ..., ensure_newline_before_comments: bool = ..., directory: str = ..., profile: str = ..., honor_noqa: bool = ..., src_paths: tuple[Path, ...] = ..., old_finders: bool = ..., remove_redundant_aliases: bool = ..., float_to_top: bool = ..., filter_files: bool = ..., formatter: str = ..., formatting_function: (str, str, object) -> str | None = ..., color_output: bool = ..., treat_comments_as_code: frozenset[str] = ..., treat_all_comments_as_code: bool = ..., supported_extensions: frozenset[str] = ..., blocked_extensions: frozenset[str] = ..., constants: frozenset[str] = ..., classes: frozenset[str] = ..., variables: frozenset[str] = ..., dedup_headings: bool = ..., only_sections: bool = ..., only_modified: bool = ..., combine_straight_imports: bool = ..., auto_identify_namespace_packages: bool = ..., namespace_packages: frozenset[str] = ..., follow_links: bool = ..., indented_import_headings: bool = ..., honor_case_in_force_sorted_sections: bool = ..., sort_relative_in_force_sorted_sections: bool = ..., overwrite_in_place: bool = ..., reverse_sort: bool = ..., star_first: bool = ..., git_ls_files: dict[Path, set[str]] = ..., format_error: str = ..., format_success: str = ..., sort_order: str = ..., sort_reexports: bool = ..., split_on_trailing_comma: bool = ...) -> None")  [no-any-decorated]
- isort/settings.py:710:5: error: Type of decorated function contains type "Any" ("(self: Config) -> (...) -> list[str]")  [no-any-decorated]
+ isort/settings.py:710:5: error: Type of decorated function contains type "Any" ("def (self: Config) -> (...) -> list[str]")  [no-any-decorated]
- isort/settings.py:730:16: error: Expression type contains "Any" (has type "(to_sort: Iterable[str], key: (str) -> Any | None=..., reverse: bool=...) -> list[str] | overloaded function | (...) -> list[str] | Any")  [no-any-expr]
+ isort/settings.py:730:16: error: Expression type contains "Any" (has type "def (to_sort: Iterable[str], key: (str) -> Any | None=..., reverse: bool=...) -> list[str] | overloaded function | (...) -> list[str] | Any")  [no-any-expr]
- isort/settings.py:752:12: error: Expression type contains "Any" (has type "(str) -> Any & (value: str) -> WrapModes | type[Any] | type[str]")  [no-any-expr]
+ isort/settings.py:752:12: error: Expression type contains "Any" (has type "(str) -> Any & def (value: str) -> WrapModes | type[Any] | type[str]")  [no-any-expr]
- isort/literal.py:84:12: error: Expression type contains "Any" (has type "(function: (Any, ISortPrettyPrinter) -> str) -> (Any, ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:84:12: error: Expression type contains "Any" (has type "def (function: (Any, ISortPrettyPrinter) -> str) -> (Any, ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:87:2: error: Expression type contains "Any" (has type "(value: dict[Any, Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:87:2: error: Expression type contains "Any" (has type "def (value: dict[Any, Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:92:2: error: Expression type contains "Any" (has type "(value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:92:2: error: Expression type contains "Any" (has type "def (value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:97:2: error: Expression type contains "Any" (has type "(value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:97:2: error: Expression type contains "Any" (has type "def (value: list[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:102:2: error: Expression type contains "Any" (has type "(value: set[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
+ isort/literal.py:102:2: error: Expression type contains "Any" (has type "def (value: set[Any], printer: ISortPrettyPrinter) -> str")  [no-any-expr]
- isort/literal.py:107:2: error: Expression type contains "Any" (has type "(value: tuple[Any, ...], printer: ISortPrettyPrinter) -> str")  [no-any-expr]```</details>

... (truncated 31198 lines) ...

github-actions[bot] avatar Apr 06 '24 08:04 github-actions[bot]

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

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:82:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:82:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:291:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:291:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:402:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:402:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:421:19: note: Type is "def (magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
+ dulwich/objects.py:421:19: note: Type is "(magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:769:15: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:782:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:782:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:783:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:783:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:784:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:784:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:794:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:794:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "(self: Tag, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "def (self: Tag, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "(entry: Untyped) -> bytes", variable has type "(entry: Untyped) -> None")  [assignment]
+ dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "def (entry: Untyped) -> bytes", variable has type "def (entry: Untyped) -> None")  [assignment]
- dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "(entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
+ dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "def (entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
- dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("(cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1090:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1090:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1344:13: note: Type is "def (Any (unannotated)) -> None"
+ dulwich/objects.py:1344:13: note: Type is "(Any (unannotated)) -> None"
- dulwich/objects.py:1344:29: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1344:29: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("(cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("def (cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1400:18: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1400:18: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1431:39: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1431:39: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1458:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1458:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1459:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1459:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1460:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1460:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1461:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1461:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1462:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1462:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "(self: Commit, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "def (self: Commit, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "(text: Untyped, strict: bool=...) -> None")  [no-any-expr]
+ dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "def (text: Untyped, strict: bool=...) -> None")  [no-any-expr]
- dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "(entries: Untyped, name_order: bool) -> None")  [no-any-expr]
+ dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "def (entries: Untyped, name_order: bool) -> None")  [no-any-expr]
- dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("(cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("def (cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
- dulwich/config.py:135:25: note: Type is "def (key: Untyped, default: Untyped =) -> None"
+ dulwich/config.py:135:25: note: Type is "(key: Untyped, default: Untyped =) -> None"
- dulwich/config.py:263:24: note: Type is "def (dict_in: Untyped =) -> None"
+ dulwich/config.py:263:24: note: Type is "(dict_in: Untyped =) -> None"
- dulwich/archive.py:57:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:57:17: note: Type is "(Untyped) -> None"
- dulwich/archive.py:62:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:62:17: note: Type is "(Untyped) -> None"
- dulwich/tests/test_mailmap.py:72:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:72:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/tests/test_mailmap.py:73:9: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/tests/test_mailmap.py:73:9: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"```</details>

... (truncated 31096 lines) ...

github-actions[bot] avatar Apr 07 '24 12:04 github-actions[bot]

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

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/cache.py:142:14: error: No overload variant of "open" matches argument types "None", "str"  [call-overload]
+ parso/cache.py:142:14: error: No overload variant of "__call__" of "BuiltinFunctionType" matches argument types "None", "str"  [call-overload]
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'r+' | '+r' | 'rt+' | 'r+t' | '+rt' | 'tr+' | 't+r' | '+tr' | 'w+' | '+w' | 'wt+' | 'w+t' | '+wt' | 'tw+' | 't+w' | '+tw' | 'a+' | '+a' | 'at+' | 'a+t' | '+at' | 'ta+' | 't+a' | '+ta' | 'x+' | '+x' | 'xt+' | 'x+t' | '+xt' | 'tx+' | 't+x' | '+tx' | 'w' | 'wt' | 'tw' | 'a' | 'at' | 'ta' | 'x' | 'xt' | 'tx' | 'r' | 'rt' | 'tr' | 'U' | 'rU' | 'Ur' | 'rtU' | 'rUt' | 'Urt' | 'trU' | 'tUr' | 'Utr' = ..., buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> TextIOWrapper
+ parso/cache.py:142:14: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'r+' | '+r' | 'rt+' | 'r+t' | '+rt' | 'tr+' | 't+r' | '+tr' | 'w+' | '+w' | 'wt+' | 'w+t' | '+wt' | 'tw+' | 't+w' | '+tw' | 'a+' | '+a' | 'at+' | 'a+t' | '+at' | 'ta+' | 't+a' | '+ta' | 'x+' | '+x' | 'xt+' | 'x+t' | '+xt' | 'tx+' | 't+x' | '+tx' | 'w' | 'wt' | 'tw' | 'a' | 'at' | 'ta' | 'x' | 'xt' | 'tx' | 'r' | 'rt' | 'tr' | 'U' | 'rU' | 'Ur' | 'rtU' | 'rUt' | 'Urt' | 'trU' | 'tUr' | 'Utr' = ..., buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> TextIOWrapper
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: 0, encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> FileIO
+ parso/cache.py:142:14: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: 0, encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> FileIO
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedRandom
+ parso/cache.py:142:14: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedRandom
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedWriter
+ parso/cache.py:142:14: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedWriter
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedReader
+ parso/cache.py:142:14: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedReader
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: int = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BinaryIO
+ parso/cache.py:142:14: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: int = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BinaryIO
- parso/cache.py:142:14: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: str, buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> IO[Any]
+ parso/cache.py:142:14: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: str, buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> IO[Any]
- parso/cache.py:198:10: error: No overload variant of "open" matches argument types "None", "str"  [call-overload]
+ parso/cache.py:198:10: error: No overload variant of "__call__" of "BuiltinFunctionType" matches argument types "None", "str"  [call-overload]
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'r+' | '+r' | 'rt+' | 'r+t' | '+rt' | 'tr+' | 't+r' | '+tr' | 'w+' | '+w' | 'wt+' | 'w+t' | '+wt' | 'tw+' | 't+w' | '+tw' | 'a+' | '+a' | 'at+' | 'a+t' | '+at' | 'ta+' | 't+a' | '+ta' | 'x+' | '+x' | 'xt+' | 'x+t' | '+xt' | 'tx+' | 't+x' | '+tx' | 'w' | 'wt' | 'tw' | 'a' | 'at' | 'ta' | 'x' | 'xt' | 'tx' | 'r' | 'rt' | 'tr' | 'U' | 'rU' | 'Ur' | 'rtU' | 'rUt' | 'Urt' | 'trU' | 'tUr' | 'Utr' = ..., buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> TextIOWrapper
+ parso/cache.py:198:10: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'r+' | '+r' | 'rt+' | 'r+t' | '+rt' | 'tr+' | 't+r' | '+tr' | 'w+' | '+w' | 'wt+' | 'w+t' | '+wt' | 'tw+' | 't+w' | '+tw' | 'a+' | '+a' | 'at+' | 'a+t' | '+at' | 'ta+' | 't+a' | '+ta' | 'x+' | '+x' | 'xt+' | 'x+t' | '+xt' | 'tx+' | 't+x' | '+tx' | 'w' | 'wt' | 'tw' | 'a' | 'at' | 'ta' | 'x' | 'xt' | 'tx' | 'r' | 'rt' | 'tr' | 'U' | 'rU' | 'Ur' | 'rtU' | 'rUt' | 'Urt' | 'trU' | 'tUr' | 'Utr' = ..., buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> TextIOWrapper
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: 0, encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> FileIO
+ parso/cache.py:198:10: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: 0, encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> FileIO
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedRandom
+ parso/cache.py:198:10: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedRandom
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedWriter
+ parso/cache.py:198:10: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedWriter
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedReader
+ parso/cache.py:198:10: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr', buffering: -1 | 1 = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BufferedReader
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: int = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BinaryIO
+ parso/cache.py:198:10: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: 'rb+' | 'r+b' | '+rb' | 'br+' | 'b+r' | '+br' | 'wb+' | 'w+b' | '+wb' | 'bw+' | 'b+w' | '+bw' | 'ab+' | 'a+b' | '+ab' | 'ba+' | 'b+a' | '+ba' | 'xb+' | 'x+b' | '+xb' | 'bx+' | 'b+x' | '+bx' | 'rb' | 'br' | 'rbU' | 'rUb' | 'Urb' | 'brU' | 'bUr' | 'Ubr' | 'wb' | 'bw' | 'ab' | 'ba' | 'xb' | 'bx', buffering: int = ..., encoding: None = ..., errors: None = ..., newline: None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> BinaryIO
- parso/cache.py:198:10: note:     def open(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: str, buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> IO[Any]
+ parso/cache.py:198:10: note:     def __call__(file: int | str | bytes | PathLike[str] | PathLike[bytes], mode: str, buffering: int = ..., encoding: str | None = ..., errors: str | None = ..., newline: str | None = ..., closefd: bool = ..., opener: Any (from unimported type) | None = ...) -> IO[Any]
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:627:16: error: No overload variant of "next" matches argument types "None", "None"  [call-overload]
+ parso/python/tree.py:627:16: error: No overload variant of "__call__" of "BuiltinFunctionType" matches argument types "None", "None"  [call-overload]
- parso/python/tree.py:627:16: note:     def [_T] next(SupportsNext[_T@next], /) -> _T@next
+ parso/python/tree.py:627:16: note:     def [_T] __call__(self, SupportsNext[_T@_as_builtin], /) -> _T@_as_builtin
- parso/python/tree.py:627:16: note:     def [_T, _VT] next(SupportsNext[_T@next], _VT@next, /) -> _T@next | _VT@next
+ parso/python/tree.py:627:16: note:     def [_T, _VT] __call__(self, SupportsNext[_T@next], _VT@next, /) -> _T@next | _VT@next
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:1576:20: error: Argument 1 to "len" has incompatible type "None"; expected "Sized"  [arg-type]
+ lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:1576:20: error: Argument 1 to "__call__" of "BuiltinFunctionType" has incompatible type "None"; expected "Sized"  [arg-type]
- lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:1864:20: error: Argument 1 to "len" has incompatible type "None"; expected "Sized"  [arg-type]
+ lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:1864:20: error: Argument 1 to "__call__" of "BuiltinFunctionType" has incompatible type "None"; expected "Sized"  [arg-type]
- lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:2163:20: error: Argument 1 to "len" has incompatible type "None"; expected "Sized"  [arg-type]
+ lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:2163:20: error: Argument 1 to "__call__" of "BuiltinFunctionType" has incompatible type "None"; expected "Sized"  [arg-type]
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]

... (truncated 912 lines) ...

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 424 lines) ...

pyjwt (https://github.com/jpadilla/pyjwt)
- jwt/algorithms.py:167:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, key: Any) -> Any")  [no-any-decorated]
+ jwt/algorithms.py:167:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, key: Any) -> Any")  [no-any-decorated]
- jwt/algorithms.py:174:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, msg: bytes, key: Any) -> bytes")  [no-any-decorated]
+ jwt/algorithms.py:174:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, msg: bytes, key: Any) -> bytes")  [no-any-decorated]
- jwt/algorithms.py:181:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, msg: bytes, key: Any, sig: bytes) -> bool")  [no-any-decorated]
+ jwt/algorithms.py:181:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, msg: bytes, key: Any, sig: bytes) -> bool")  [no-any-decorated]
+ jwt/algorithms.py: note: In class "HMACAlgorithm":
+ jwt/algorithms.py:250:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
+ jwt/algorithms.py:250:37: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ jwt/algorithms.py:251:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
+ jwt/algorithms.py:252:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
- jwt/api_jws.py:185:46: note: Type is "def () -> _collections_abc.dict_keys[str, Untyped]"
+ jwt/api_jws.py:185:46: note: Type is "() -> _collections_abc.dict_keys[str, Untyped]"
- jwt/api_jws.py:230:46: note: Type is "def () -> _collections_abc.dict_keys[str, Untyped]"
+ jwt/api_jws.py:230:46: note: Type is "() -> _collections_abc.dict_keys[str, Untyped]"```</details>

... (truncated 31476 lines) ...

github-actions[bot] avatar Apr 09 '24 09:04 github-actions[bot]

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

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:627:16: error: No overload variant of "next" matches argument types "None", "None"  [call-overload]
+ parso/python/tree.py:627:16: error: No overload variant of "__call__" of "BuiltinFunctionType" matches argument types "None", "None"  [call-overload]
- parso/python/tree.py:627:16: note:     def [_T] next(SupportsNext[_T@next], /) -> _T@next
+ parso/python/tree.py:627:16: note:     def [_T] __call__(self, SupportsNext[_T@_as_builtin], /) -> _T@_as_builtin
- parso/python/tree.py:627:16: note:     def [_T, _VT] next(SupportsNext[_T@next], _VT@next, /) -> _T@next | _VT@next
+ parso/python/tree.py:627:16: note:     def [_T, _VT] __call__(self, SupportsNext[_T@next], _VT@next, /) -> _T@next | _VT@next
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 424 lines) ...

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:1576:20: error: Argument 1 to "len" has incompatible type "None"; expected "Sized"  [arg-type]
+ lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:1576:20: error: Argument 1 to "__call__" of "BuiltinFunctionType" has incompatible type "None"; expected "Sized"  [arg-type]
- lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:1864:20: error: Argument 1 to "len" has incompatible type "None"; expected "Sized"  [arg-type]
+ lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:1864:20: error: Argument 1 to "__call__" of "BuiltinFunctionType" has incompatible type "None"; expected "Sized"  [arg-type]
- lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:2163:20: error: Argument 1 to "len" has incompatible type "None"; expected "Sized"  [arg-type]
+ lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:2163:20: error: Argument 1 to "__call__" of "BuiltinFunctionType" has incompatible type "None"; expected "Sized"  [arg-type]
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]

... (truncated 912 lines) ...

pyjwt (https://github.com/jpadilla/pyjwt)
- jwt/algorithms.py:167:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, key: Any) -> Any")  [no-any-decorated]
+ jwt/algorithms.py:167:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, key: Any) -> Any")  [no-any-decorated]
- jwt/algorithms.py:174:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, msg: bytes, key: Any) -> bytes")  [no-any-decorated]
+ jwt/algorithms.py:174:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, msg: bytes, key: Any) -> bytes")  [no-any-decorated]
- jwt/algorithms.py:181:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, msg: bytes, key: Any, sig: bytes) -> bool")  [no-any-decorated]
+ jwt/algorithms.py:181:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, msg: bytes, key: Any, sig: bytes) -> bool")  [no-any-decorated]
+ jwt/algorithms.py: note: In class "HMACAlgorithm":
+ jwt/algorithms.py:250:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
+ jwt/algorithms.py:250:37: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ jwt/algorithms.py:251:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
+ jwt/algorithms.py:252:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
- jwt/api_jws.py:185:46: note: Type is "def () -> _collections_abc.dict_keys[str, Untyped]"
+ jwt/api_jws.py:185:46: note: Type is "() -> _collections_abc.dict_keys[str, Untyped]"
- jwt/api_jws.py:230:46: note: Type is "def () -> _collections_abc.dict_keys[str, Untyped]"
+ jwt/api_jws.py:230:46: note: Type is "() -> _collections_abc.dict_keys[str, Untyped]"
- jwt/api_jws.py:233:19: note: Type is "def (jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
+ jwt/api_jws.py:233:19: note: Type is "(jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
- jwt/api_jwt.py:151:19: note: Type is "def (jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
+ jwt/api_jwt.py:151:19: note: Type is "(jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
- jwt/api_jwt.py:162:9: note: Type is "def (payload: dict[str, Any], options: dict[str, Any], audience: Untyped =, issuer: Untyped =, leeway: float | datetime.timedelta =) -> None"
+ jwt/api_jwt.py:162:9: note: Type is "(payload: dict[str, Any], options: dict[str, Any], audience: Untyped =, issuer: Untyped =, leeway: float | datetime.timedelta =) -> None"

black (https://github.com/psf/black)
- src/blib2to3/pytree.py:570:20: note: Type is "def (node: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:570:20: note: Type is "(node: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:763:17: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:763:17: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:764:41: error: Expression type contains "Any" (has type "(s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
+ src/blib2to3/pytree.py:764:41: error: Expression type contains "Any" (has type "def (s: Untyped) -> tuple[Any, ...]")  [no-any-expr]
- src/blib2to3/pytree.py:806:16: note: Type is "def (nodes: Untyped, results: Untyped =) -> bool"
+ src/blib2to3/pytree.py:806:16: note: Type is "(nodes: Untyped, results: Untyped =) -> bool"
- src/blib2to3/pytree.py:810:21: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:810:21: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:839:19: note: Type is "def (nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
+ src/blib2to3/pytree.py:839:19: note: Type is "(nodes: Untyped) -> (int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])"
- src/blib2to3/pytree.py:849:33: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:849:33: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:856:33: note: Type is "def (nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:856:33: note: Type is "(nodes: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pytree.py:918:35: note: Type is "def (nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
+ src/blib2to3/pytree.py:918:35: note: Type is "(nodes: Untyped, count: Untyped) -> typing.Iterator[(int, dict[str, blib2to3.pytree.Node | blib2to3.pytree.Leaf])]"
- src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("(*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
+ src/blib2to3/pgen2/driver.py:40: error: Type of decorated function contains type "Any" ("def (*, start: int = ..., end: int | None = ..., tokens: list[Any] = ...) -> None")  [no-any-decorated]
- src/black/strings.py:254:16: error: Argument 1 to "len" has incompatible type "str | None"; expected "Sized"  [arg-type]
+ src/black/strings.py:254:16: error: Argument 1 to "__call__" of "BuiltinFunctionType" has incompatible type "str | None"; expected "Sized"  [arg-type]
- src/black/output.py:15:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:15:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:16:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:24:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:24:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:25:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/output.py:33:2: error: Expression type contains "Any" (has type "(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
+ src/black/output.py:33:2: error: Expression type contains "Any" (has type "def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-expr]
- src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("(message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
+ src/black/output.py:34:1: error: Type of decorated function contains type "Any" ("def (message: str | None=..., nl: bool=..., **styles: Any) -> None")  [no-any-decorated]
- src/black/files.py:45:2: error: Expression type contains "Any" (has type "(path: Path | str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:45:2: error: Expression type contains "Any" (has type "def (path: Path | str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:127:2: error: Expression type contains "Any" (has type "(path_config: str) -> dict[str, Any]")  [no-any-expr]
+ src/black/files.py:127:2: error: Expression type contains "Any" (has type "def (path_config: str) -> dict[str, Any]")  [no-any-expr]
- src/black/files.py:128:1: error: Type of decorated function contains type "Any" ("(path_config: str) -> dict[str, Any]")  [no-any-decorated]
+ src/black/files.py:128:1: error: Type of decorated function contains type "Any" ("def (path_config: str) -> dict[str, Any]")  [no-any-decorated]
- src/black/files.py:314:12: note: Type is "def (file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
+ src/black/files.py:314:12: note: Type is "(file: str | os.PathLike[Untyped], separators: typing.Collection[str] | None =) -> bool"
- src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "(src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
+ src/black/concurrency.py:156:27: error: Expression type contains "Any" (has type "def (src: Path, fast: bool, mode: Mode, write_back: WriteBack=..., lock: Any=..., *, lines: Collection[(int, int)] = ...) -> bool")  [no-any-expr]
- src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:163:48: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
- src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "(tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]
+ src/black/concurrency.py:164:49: error: Expression type contains "Any" (has type "def (tasks: Iterable[Future[Any]]) -> None")  [no-any-expr]

boostedblob (https://github.com/hauntsaninja/boostedblob)
- boostedblob/azure_auth.py:145:28: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/azure_auth.py:145:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/globals.py:69:52: error: "(T@TokenManager) -> Awaitable[(Any, float)]" has no attribute "__qualname__"  [attr-defined]
- boostedblob/globals.py:142:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:142:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:145:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:145:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:148:46: error: Expression type contains "Any" (has type "(_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:148:46: error: Expression type contains "Any" (has type "def (_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:203:2: error: Expression type contains "Any" (has type "(**kwargs: Any) -> Iterator[None]")  [no-any-expr]
+ boostedblob/globals.py:203:2: error: Expression type contains "Any" (has type "def (**kwargs: Any) -> Iterator[None]")  [no-any-expr]
- boostedblob/globals.py:204:1: error: Type of decorated function contains type "Any" ("(**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
+ boostedblob/globals.py:204:1: error: Type of decorated function contains type "Any" ("def (**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
- boostedblob/globals.py:247:6: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:247:6: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:248:5: error: Type of decorated function contains type "Any" ("(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
+ boostedblob/globals.py:248:5: error: Type of decorated function contains type "Any" ("def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
- boostedblob/globals.py:252:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:252:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:268:32: error: Expression type contains "Any" (has type "(loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
+ boostedblob/globals.py:268:32: error: Expression type contains "Any" (has type "def (loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
- boostedblob/request.py:84: error: Type of decorated function contains type "Any" ("(*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: dict[str, Any] | bytes | None = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ..., auth: (Request) -> Awaitable[RawRequest] | None = ...) -> None")  [no-any-decorated]
+ boostedblob/request.py:84: error: Type of decorated function contains type "Any" ("def (*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: dict[str, Any] | bytes | None = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ..., auth: (Request) -> Awaitable[RawRequest] | None = ...) -> None")  [no-any-decorated]
- boostedblob/path.py:384:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:384:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]```</details>

... (truncated 31356 lines) ...

github-actions[bot] avatar Apr 17 '24 00:04 github-actions[bot]

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

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:627:16: note:     def [_T] next(SupportsNext[_T@next], /) -> _T@next
+ parso/python/tree.py:627:16: note:     def [_T] next(SupportsNext[_T@_as_builtin], /) -> _T@_as_builtin
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:149:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:149:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:151:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:153:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:161:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:163:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:164:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:176:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:216:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:227:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:229:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:229:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:234:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:244:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:246:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:248:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:262:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:275:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:283:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:291:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:316:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:322:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:336:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:340:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:348:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:366:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:405:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:440:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:479:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:479:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:82:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:82:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:291:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:291:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:402:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:402:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:421:19: note: Type is "def (magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
+ dulwich/objects.py:421:19: note: Type is "(magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:769:15: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:782:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:782:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:783:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:783:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:784:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:784:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:794:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:794:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "(self: Tag, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "def (self: Tag, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1018:20: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "(entry: Untyped) -> bytes", variable has type "(entry: Untyped) -> None")  [assignment]
+ dulwich/objects.py:1020:20: error: Incompatible types in assignment (expression has type "def (entry: Untyped) -> bytes", variable has type "def (entry: Untyped) -> None")  [assignment]
- dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "(entry: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1021:52: error: Expression type contains "Any" (has type "def (entry: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "(entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
+ dulwich/objects.py:1021:52: error: Argument "key" to "sorted" has incompatible type "def (entry: Untyped) -> None"; expected "(Any (unannotated)) -> SupportsDunderLT[Any] | SupportsDunderGT[Any]"  [arg-type]
- dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("(cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1089:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tree], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1090:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1090:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1344:13: note: Type is "def (Any (unannotated)) -> None"
+ dulwich/objects.py:1344:13: note: Type is "(Any (unannotated)) -> None"
- dulwich/objects.py:1344:29: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1344:29: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("(cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:1399:5: error: Type of decorated function contains type "Any" ("def (cls: type[Commit], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:1400:18: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:1400:18: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:1431:39: note: Type is "def (string: Untyped) -> None"
+ dulwich/objects.py:1431:39: note: Type is "(string: Untyped) -> None"
- dulwich/objects.py:1458:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1458:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1459:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1459:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1460:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1460:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1461:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1461:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1462:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:1462:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "(self: Commit, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:1596:9: error: Expression type contains "Any" (has type "def (self: Commit, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "(text: Untyped, strict: bool=...) -> None")  [no-any-expr]
+ dulwich/objects.py:1666:18: error: Expression type contains "Any" (has type "def (text: Untyped, strict: bool=...) -> None")  [no-any-expr]
- dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "(entries: Untyped, name_order: bool) -> None")  [no-any-expr]
+ dulwich/objects.py:1667:25: error: Expression type contains "Any" (has type "def (entries: Untyped, name_order: bool) -> None")  [no-any-expr]
- dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("(cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/config.py:68:5: error: Type of decorated function contains type "Any" ("def (cls: type[CaseInsensitiveOrderedMultiDict], dict_in: Untyped=...) -> None")  [no-any-decorated]
- dulwich/config.py:135:25: note: Type is "def (key: Untyped, default: Untyped =) -> None"
+ dulwich/config.py:135:25: note: Type is "(key: Untyped, default: Untyped =) -> None"
- dulwich/config.py:263:24: note: Type is "def (dict_in: Untyped =) -> None"
+ dulwich/config.py:263:24: note: Type is "(dict_in: Untyped =) -> None"
- dulwich/archive.py:57:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:57:17: note: Type is "(Untyped) -> None"
- dulwich/archive.py:62:17: note: Type is "def (Untyped) -> None"
+ dulwich/archive.py:62:17: note: Type is "(Untyped) -> None"
- dulwich/reflog.py:108:9: note: Type is "def ((Untyped, None)) -> None"
+ dulwich/reflog.py:108:9: note: Type is "((Untyped, None)) -> None"
- dulwich/pack.py:473:20: note: Type is "def (Untyped) -> None"
+ dulwich/pack.py:473:20: note: Type is "(Untyped) -> None"
- dulwich/pack.py:481:20: error: Expression type contains "Any" (has type "(sha: Untyped) -> None")  [no-any-expr]```</details>

... (truncated 30971 lines) ...

github-actions[bot] avatar May 01 '24 06:05 github-actions[bot]

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

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:627:16: note:     def [_T] next(SupportsNext[_T@next], /) -> _T@next
+ parso/python/tree.py:627:16: note:     def [_T] next(SupportsNext[_T@_as_builtin], /) -> _T@_as_builtin
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:151:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:151:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:153:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:159:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:163:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:165:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:166:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:178:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:218:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:229:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:231:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:231:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:236:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:246:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:248:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:250:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:264:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:277:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:293:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:318:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:324:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:338:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:342:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:350:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:368:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:407:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:444:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:483:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:483:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

itsdangerous (https://github.com/pallets/itsdangerous)
- src/itsdangerous/signer.py:54:49: error: Expression type contains "Any" (has type "(string: bytes=...) -> Any")  [no-any-expr]
+ src/itsdangerous/signer.py:54:49: error: Expression type contains "Any" (has type "def (string: bytes=...) -> Any")  [no-any-expr]
- src/itsdangerous/signer.py:120:49: error: Expression type contains "Any" (has type "(string: bytes=...) -> Any")  [no-any-expr]
+ src/itsdangerous/signer.py:120:49: error: Expression type contains "Any" (has type "def (string: bytes=...) -> Any")  [no-any-expr]
- src/itsdangerous/serializer.py:110:5: error: Type of decorated function contains type "Any" ("(self: Serializer[str], secret_key: str | bytes | Iterable[str] | Iterable[bytes], salt: str | bytes | None=..., serializer: None | _PDataSerializer[str]=..., serializer_kwargs: dict[str, Any] | None=..., signer: type[Signer] | None=..., signer_kwargs: dict[str, Any] | None=..., fallback_signers: list[dict[str, Any] | (type[Signer], dict[str, Any]) | type[Signer]] | None=...) -> None")  [no-any-decorated]
+ src/itsdangerous/serializer.py:110:5: error: Type of decorated function contains type "Any" ("def (self: Serializer[str], secret_key: str | bytes | Iterable[str] | Iterable[bytes], salt: str | bytes | None=..., serializer: None | _PDataSerializer[str]=..., serializer_kwargs: dict[str, Any] | None=..., signer: type[Signer] | None=..., signer_kwargs: dict[str, Any] | None=..., fallback_signers: list[dict[str, Any] | (type[Signer], dict[str, Any]) | type[Signer]] | None=...) -> None")  [no-any-decorated]
- src/itsdangerous/serializer.py:126:5: error: Type of decorated function contains type "Any" ("(self: Serializer[bytes], secret_key: str | bytes | Iterable[str] | Iterable[bytes], salt: str | bytes | None, serializer: _PDataSerializer[bytes], serializer_kwargs: dict[str, Any] | None=..., signer: type[Signer] | None=..., signer_kwargs: dict[str, Any] | None=..., fallback_signers: list[dict[str, Any] | (type[Signer], dict[str, Any]) | type[Signer]] | None=...) -> None")  [no-any-decorated]
+ src/itsdangerous/serializer.py:126:5: error: Type of decorated function contains type "Any" ("def (self: Serializer[bytes], secret_key: str | bytes | Iterable[str] | Iterable[bytes], salt: str | bytes | None, serializer: _PDataSerializer[bytes], serializer_kwargs: dict[str, Any] | None=..., signer: type[Signer] | None=..., signer_kwargs: dict[str, Any] | None=..., fallback_signers: list[dict[str, Any] | (type[Signer], dict[str, Any]) | type[Signer]] | None=...) -> None")  [no-any-decorated]
- src/itsdangerous/serializer.py:142:5: error: Type of decorated function contains type "Any" ("(self: Serializer[bytes], secret_key: str | bytes | Iterable[str] | Iterable[bytes], salt: str | bytes | None=..., *, serializer: _PDataSerializer[bytes], serializer_kwargs: dict[str, Any] | None = ..., signer: type[Signer] | None = ..., signer_kwargs: dict[str, Any] | None = ..., fallback_signers: list[dict[str, Any] | (type[Signer], dict[str, Any]) | type[Signer]] | None = ...) -> None")  [no-any-decorated]
+ src/itsdangerous/serializer.py:142:5: error: Type of decorated function contains type "Any" ("def (self: Serializer[bytes], secret_key: str | bytes | Iterable[str] | Iterable[bytes], salt: str | bytes | None=..., *, serializer: _PDataSerializer[bytes], serializer_kwargs: dict[str, Any] | None = ..., signer: type[Signer] | None = ..., signer_kwargs: dict[str, Any] | None = ..., fallback_signers: list[dict[str, Any] | (type[Signer], dict[str, Any]) | type[Signer]] | None = ...) -> None")  [no-any-decorated]
- src/itsdangerous/serializer.py:161:5: error: Type of decorated function contains type "Any" ("(self: Serializer[_TSerialized@Serializer], secret_key: str | bytes | Iterable[str] | Iterable[bytes], salt: str | bytes | None, serializer: Any, serializer_kwargs: dict[str, Any] | None=..., signer: type[Signer] | None=..., signer_kwargs: dict[str, Any] | None=..., fallback_signers: list[dict[str, Any] | (type[Signer], dict[str, Any]) | type[Signer]] | None=...) -> None")  [no-any-decorated]
+ src/itsdangerous/serializer.py:161:5: error: Type of decorated function contains type "Any" ("def (self: Serializer[_TSerialized@Serializer], secret_key: str | bytes | Iterable[str] | Iterable[bytes], salt: str | bytes | None, serializer: Any, serializer_kwargs: dict[str, Any] | None=..., signer: type[Signer] | None=..., signer_kwargs: dict[str, Any] | None=..., fallback_signers: list[dict[str, Any] | (type[Signer], dict[str, Any]) | type[Signer]] | None=...) -> None")  [no-any-decorated]
- src/itsdangerous/serializer.py:177:5: error: Type of decorated function contains type "Any" ("(self: Serializer[_TSerialized@Serializer], secret_key: str | bytes | Iterable[str] | Iterable[bytes], salt: str | bytes | None=..., *, serializer: Any, serializer_kwargs: dict[str, Any] | None = ..., signer: type[Signer] | None = ..., signer_kwargs: dict[str, Any] | None = ..., fallback_signers: list[dict[str, Any] | (type[Signer], dict[str, Any]) | type[Signer]] | None = ...) -> None")  [no-any-decorated]
+ src/itsdangerous/serializer.py:177:5: error: Type of decorated function contains type "Any" ("def (self: Serializer[_TSerialized@Serializer], secret_key: str | bytes | Iterable[str] | Iterable[bytes], salt: str | bytes | None=..., *, serializer: Any, serializer_kwargs: dict[str, Any] | None = ..., signer: type[Signer] | None = ..., signer_kwargs: dict[str, Any] | None = ..., fallback_signers: list[dict[str, Any] | (type[Signer], dict[str, Any]) | type[Signer]] | None = ...) -> None")  [no-any-decorated]

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

dulwich (https://github.com/dulwich/dulwich)
- dulwich/mailmap.py:70:17: note: Type is "def (canonical_identity: Untyped, from_identity: Untyped =) -> None"
+ dulwich/mailmap.py:70:17: note: Type is "(canonical_identity: Untyped, from_identity: Untyped =) -> None"
- dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("(cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/mailmap.py:114:5: error: Type of decorated function contains type "Any" ("def (cls: type[Mailmap], path: Untyped) -> None")  [no-any-decorated]
- dulwich/lru_cache.py:82:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:82:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:291:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:291:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lru_cache.py:402:9: note: Type is "def (max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
+ dulwich/lru_cache.py:402:9: note: Type is "(max_cache: Untyped, after_cleanup_count: Untyped =) -> None"
- dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
+ dulwich/lfs.py:33:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], lfs_dir: Untyped) -> None")  [no-any-decorated]
- dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("(cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
+ dulwich/lfs.py:41:5: error: Type of decorated function contains type "Any" ("def (cls: type[LFSStore], repo: Untyped, create: bool=...) -> None")  [no-any-decorated]
- dulwich/lfs.py:44:20: note: Type is "def (lfs_dir: Untyped) -> None"
+ dulwich/lfs.py:44:20: note: Type is "(lfs_dir: Untyped) -> None"
- dulwich/lfs.py:53:25: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:53:25: note: Type is "(sha: Untyped) -> None"
- dulwich/lfs.py:70:16: note: Type is "def (sha: Untyped) -> None"
+ dulwich/lfs.py:70:16: note: Type is "(sha: Untyped) -> None"
- dulwich/protocol.py:247:9: note: Type is "def (data: Untyped) -> None"
+ dulwich/protocol.py:247:9: note: Type is "(data: Untyped) -> None"
- dulwich/protocol.py:303:13: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:303:13: note: Type is "(line: Untyped) -> None"
- dulwich/protocol.py:315:9: note: Type is "def (line: Untyped) -> None"
+ dulwich/protocol.py:315:9: note: Type is "(line: Untyped) -> None"
- dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "(*args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:46: error: Expression type contains "Any" (has type "def (*args: Untyped) -> None")  [no-any-expr]
- dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "(success: Untyped, *args: Untyped) -> None")  [no-any-expr]
+ dulwich/hooks.py:159:59: error: Expression type contains "Any" (has type "def (success: Untyped, *args: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:71:5: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:71:5: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:75:9: note: Type is "def (item: Untyped) -> None"
+ dulwich/graph.py:75:9: note: Type is "(item: Untyped) -> None"
- dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "(x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
+ dulwich/graph.py:112:22: error: Expression type contains "Any" (has type "def (x: (Any (unannotated), Any (unannotated))) -> Any (unannotated)")  [no-any-expr]
- dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:150:48: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:30: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:187:57: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:188:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ dulwich/graph.py:188:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:23: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "(cmtid: Untyped) -> None")  [no-any-expr]
+ dulwich/graph.py:221:49: error: Expression type contains "Any" (has type "def (cmtid: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "(obj: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:21: error: Expression type contains "Any" (has type "def (obj: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "(obj: Untyped, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:183:26: error: Expression type contains "Any" (has type "def (obj: Untyped, value: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("(magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:387:5: error: Type of decorated function contains type "Any" ("def (magic: Untyped, f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:415:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:421:19: note: Type is "def (magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
+ dulwich/objects.py:421:19: note: Type is "(magic: Untyped, f: typing.BinaryIO) -> dulwich.objects.ShaFile"
- dulwich/objects.py:422:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:422:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:425:13: note: Type is "def (map: Untyped) -> None"
+ dulwich/objects.py:425:13: note: Type is "(map: Untyped) -> None"
- dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:441:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:444:20: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:444:20: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:447:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], f: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:450:19: note: Type is "def (f: Untyped) -> None"
+ dulwich/objects.py:450:19: note: Type is "(f: Untyped) -> None"
- dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("(type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
+ dulwich/objects.py:457:5: error: Type of decorated function contains type "Any" ("def (type_num: Untyped, string: Untyped, sha: Untyped=...) -> None")  [no-any-decorated]
- dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("(cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:491:5: error: Type of decorated function contains type "Any" ("def (cls: type[ShaFile], string: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "(self: Blob, data: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:608:20: error: Expression type contains "Any" (has type "def (self: Blob, data: Untyped) -> None")  [no-any-expr]
- dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("(cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:630:5: error: Type of decorated function contains type "Any" ("def (cls: type[Blob], path: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:631:16: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:631:16: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("(cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
+ dulwich/objects.py:768:5: error: Type of decorated function contains type "Any" ("def (cls: type[Tag], filename: Untyped) -> None")  [no-any-decorated]
- dulwich/objects.py:769:15: note: Type is "def (path: Untyped) -> None"
+ dulwich/objects.py:769:15: note: Type is "(path: Untyped) -> None"
- dulwich/objects.py:782:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:782:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:783:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:783:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:784:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:784:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:794:9: note: Type is "def (member: Untyped, error_msg: Untyped) -> None"
+ dulwich/objects.py:794:9: note: Type is "(member: Untyped, error_msg: Untyped) -> None"
- dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "(self: Tag, value: Untyped) -> None")  [no-any-expr]
+ dulwich/objects.py:885:36: error: Expression type contains "Any" (has type "def (self: Tag, value: Untyped) -> None")  [no-any-expr]```</details>

... (truncated 30739 lines) ...

github-actions[bot] avatar May 31 '24 06:05 github-actions[bot]

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

parso (https://github.com/davidhalter/parso)
- parso/normalizer.py:22:37: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:22:37: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:23:38: note: Type is "def (attr: Untyped) -> None"
+ parso/normalizer.py:23:38: note: Type is "(attr: Untyped) -> None"
- parso/normalizer.py:35:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:35:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:36:17: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:36:17: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:44:20: note: Type is "def (leaf: Untyped) -> None"
+ parso/normalizer.py:44:20: note: Type is "(leaf: Untyped) -> None"
- parso/normalizer.py:46:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/normalizer.py:46:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/normalizer.py:47:32: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:47:32: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "(self: Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:49:6: error: Expression type contains "Any" (has type "def (self: Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "(self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/normalizer.py:49:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: Normalizer, node: Untyped) -> None"; expected "(self: Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("(self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/normalizer.py:50:5: error: Type of decorated function contains type "Any" ("def (self: Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/normalizer.py:51:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:51:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:59:9: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:59:9: note: Type is "(node: Untyped) -> None"
- parso/normalizer.py:75:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/normalizer.py:75:13: note: Type is "(Any (unannotated)) -> None"
- parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("(cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
+ parso/normalizer.py:79:5: error: Type of decorated function contains type "Any" ("def (cls: type[Normalizer], *, value: Untyped = ..., values: Untyped = ..., type: Untyped = ..., types: Untyped = ...) -> None")  [no-any-decorated]
- parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "(rule_cls: Untyped) -> None")  [no-any-expr]
+ parso/normalizer.py:105:16: error: Expression type contains "Any" (has type "def (rule_cls: Untyped) -> None")  [no-any-expr]
- parso/normalizer.py:139:20: note: Type is "def (Untyped) -> None"
+ parso/normalizer.py:139:20: note: Type is "(Untyped) -> None"
- parso/normalizer.py:174:19: note: Type is "def (message: Untyped, node: Untyped) -> None"
+ parso/normalizer.py:174:19: note: Type is "(message: Untyped, node: Untyped) -> None"
- parso/normalizer.py:179:12: note: Type is "def (node: Untyped) -> None"
+ parso/normalizer.py:179:12: note: Type is "(node: Untyped) -> None"
- parso/tree.py:406:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/tree.py:406:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "(*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ parso/python/tokenize.py:359:12: error: Expression type contains "Any" (has type "def (*args: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- parso/python/tokenize.py:604:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:604:25: note: Type is "(character: Untyped) -> None"
- parso/python/tokenize.py:609:25: note: Type is "def (character: Untyped) -> None"
+ parso/python/tokenize.py:609:25: note: Type is "(character: Untyped) -> None"
- parso/python/errors.py:225:13: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:225:13: note: Type is "(Untyped) -> None"
- parso/python/errors.py:277:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:277:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:279:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:279:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:281:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:281:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:291:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:291:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:292:9: note: Type is "def (globals_or_nonlocals: Untyped, type_: Untyped) -> None"
+ parso/python/errors.py:292:9: note: Type is "(globals_or_nonlocals: Untyped, type_: Untyped) -> None"
- parso/python/errors.py:318:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:318:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "(self: _Context, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:366:6: error: Expression type contains "Any" (has type "def (self: _Context, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "(self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:366:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: _Context, node: Untyped) -> None"; expected "(self: _Context, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("(self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:367:5: error: Type of decorated function contains type "Any" ("def (self: _Context, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:368:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:368:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:370:9: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/errors.py:370:9: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/errors.py:403:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:403:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "(self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
+ parso/python/errors.py:410:6: error: Expression type contains "Any" (has type "def (self: ErrorFinder, node: Untyped) -> None")  [no-any-expr]
- parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "(self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/errors.py:410:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: ErrorFinder, node: Untyped) -> None"; expected "(self: ErrorFinder, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("(self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/errors.py:411:5: error: Type of decorated function contains type "Any" ("def (self: ErrorFinder, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/errors.py:412:9: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:412:9: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:415:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/errors.py:415:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/errors.py:417:21: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:417:21: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:423:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:423:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:432:13: note: Type is "def (child_context: Untyped) -> None"
+ parso/python/errors.py:432:13: note: Type is "(child_context: Untyped) -> None"
- parso/python/errors.py:445:17: note: Type is "def (spacing: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:445:17: note: Type is "(spacing: Untyped, message: Untyped) -> None"
- parso/python/errors.py:465:17: note: Type is "def (node: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:465:17: note: Type is "(node: Untyped, message: Untyped) -> None"
- parso/python/errors.py:470:32: note: Type is "def (node: Untyped) -> None"
+ parso/python/errors.py:470:32: note: Type is "(node: Untyped) -> None"
- parso/python/errors.py:476:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:476:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:479:9: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/errors.py:479:9: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/errors.py:491:36: note: Type is "def () -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
+ parso/python/errors.py:491:36: note: Type is "() -> _collections_abc.dict_values[Any (unannotated), Any (unannotated)]"
- parso/python/errors.py:492:13: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/errors.py:492:13: note: Type is "(Any (unannotated)) -> None"
- parso/python/errors.py:503:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:503:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:533:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:533:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:553:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:553:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:565:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:565:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:577:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:577:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:594:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:594:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:600:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:600:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:612:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:612:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:624:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:624:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:655:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:655:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:657:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:657:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:660:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:660:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:673:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:673:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:686:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:686:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:687:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:687:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:697:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:697:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:697:28: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/errors.py:697:28: note: Type is "(leaf: Untyped) -> None"
- parso/python/errors.py:704:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:704:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:716:26: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:716:26: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:718:34: note: Type is "def (string: Untyped) -> None"
+ parso/python/errors.py:718:34: note: Type is "(string: Untyped) -> None"
- parso/python/errors.py:722:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:722:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:732:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:732:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:740:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:740:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:764:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:764:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:785:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:785:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:798:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:798:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:801:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:801:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:833:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:833:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:867:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:867:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:870:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:870:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:890:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:890:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:896:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:896:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:904:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:904:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:933:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:933:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:944:29: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:944:29: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:946:29: note: Type is "def (Untyped) -> None"
+ parso/python/errors.py:946:29: note: Type is "(Untyped) -> None"
- parso/python/errors.py:951:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:951:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:955:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:955:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:958:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:958:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:959:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:959:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:977:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:977:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:991:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:991:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1003:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1003:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1006:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1006:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1014:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1014:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1018:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1018:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1022:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1022:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1032:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1032:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1036:13: note: Type is "def (format_spec: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1036:13: note: Type is "(format_spec: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1039:9: note: Type is "def (children: Untyped, depth: int =) -> None"
+ parso/python/errors.py:1039:9: note: Type is "(children: Untyped, depth: int =) -> None"
- parso/python/errors.py:1044:17: note: Type is "def (fstring_expr: Untyped, depth: Untyped) -> None"
+ parso/python/errors.py:1044:17: note: Type is "(fstring_expr: Untyped, depth: Untyped) -> None"
- parso/python/errors.py:1096:29: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1096:29: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1098:25: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1098:25: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1119:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1119:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1147:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1147:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1160:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1160:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1169:21: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1169:21: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1171:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1171:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1179:13: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1179:13: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1182:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1182:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1189:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1189:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1195:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1195:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1206:17: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1206:17: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1222:17: note: Type is "def (node: Untyped, code: Untyped =, message: Untyped =) -> None"
+ parso/python/errors.py:1222:17: note: Type is "(node: Untyped, code: Untyped =, message: Untyped =) -> None"
- parso/python/errors.py:1230:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1230:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1233:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1233:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1236:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1236:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1242:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1242:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1245:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1245:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1249:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1249:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1252:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1252:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1258:13: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1258:13: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/python/errors.py:1261:2: note: Type is "def (*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
+ parso/python/errors.py:1261:2: note: Type is "(*, value: Untyped =, values: Untyped =, type: Untyped =, types: Untyped =) -> None"
- parso/python/errors.py:1293:13: note: Type is "def (typing.Iterable[Any (unannotated)]) -> None"
+ parso/python/errors.py:1293:13: note: Type is "(typing.Iterable[Any (unannotated)]) -> None"
- parso/python/errors.py:1326:9: note: Type is "def (node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
+ parso/python/errors.py:1326:9: note: Type is "(node: Untyped, is_deletion: bool =, is_namedexpr: bool =, is_aug_assign: bool =) -> None"
- parso/pgen2/grammar_parser.py:56:39: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:56:39: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:57:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:57:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:60:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:60:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:75:17: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:75:17: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:100:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:100:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:125:13: note: Type is "def (type_: Untyped, value: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:125:13: note: Type is "(type_: Untyped, value: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:131:13: note: Type is "def (next_: Untyped, nonterminal_or_string: Untyped =) -> None"
+ parso/pgen2/grammar_parser.py:131:13: note: Type is "(next_: Untyped, nonterminal_or_string: Untyped =) -> None"
- parso/pgen2/grammar_parser.py:135:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:135:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:140:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:140:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/pgen2/grammar_parser.py:143:13: note: Type is "def (msg: Untyped, *args: Untyped) -> None"
+ parso/pgen2/grammar_parser.py:143:13: note: Type is "(msg: Untyped, *args: Untyped) -> None"
- parso/python/tree.py:339:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:339:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:345:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:345:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:351:16: note: Type is "def (*names: Untyped) -> None"
+ parso/python/tree.py:351:16: note: Type is "(*names: Untyped) -> None"
- parso/python/tree.py:627:16: note:     def [_T] next(SupportsNext[_T@next], /) -> _T@next
+ parso/python/tree.py:627:16: note:     def [_T] next(SupportsNext[_T@_as_builtin], /) -> _T@_as_builtin
- parso/python/tree.py:1021:17: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1021:17: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1025:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1025:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1028:25: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1028:25: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1031:9: note: Type is "def (Untyped) -> None"
+ parso/python/tree.py:1031:9: note: Type is "(Untyped) -> None"
- parso/python/tree.py:1197:16: note: Type is "def (children: Untyped, include_prefix: Untyped) -> None"
+ parso/python/tree.py:1197:16: note: Type is "(children: Untyped, include_prefix: Untyped) -> None"
- parso/pgen2/generator.py:103:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:103:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:116:29: note: Type is "def () -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
+ parso/pgen2/generator.py:116:29: note: Type is "() -> typing.ItemsView[str, parso.pgen2.generator.DFAState[Untyped]]"
- parso/pgen2/generator.py:201:47: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:201:47: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/pgen2/generator.py:210:13: note: Type is "def (next_: Untyped, label: Untyped) -> None"
+ parso/pgen2/generator.py:210:13: note: Type is "(next_: Untyped, label: Untyped) -> None"
- parso/pgen2/generator.py:265:30: note: Type is "def () -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
+ parso/pgen2/generator.py:265:30: note: Type is "() -> _collections_abc.dict_items[Any (unannotated), Any (unannotated)]"
- parso/parser.py:129:13: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:129:13: note: Type is "(token: Untyped) -> None"
- parso/parser.py:144:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:144:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/parser.py:186:21: note: Type is "def (token: Untyped) -> None"
+ parso/parser.py:186:21: note: Type is "(token: Untyped) -> None"
- parso/parser.py:194:13: note: Type is "def (Untyped) -> None"
+ parso/parser.py:194:13: note: Type is "(Untyped) -> None"
- parso/parser.py:196:16: note: Type is "def (type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
+ parso/parser.py:196:16: note: Type is "(type_: Untyped, value: Untyped, prefix: Untyped, start_pos: Untyped) -> None"
- parso/parser.py:200:15: note: Type is "def (typing_extensions.SupportsIndex =) -> Untyped"
+ parso/parser.py:200:15: note: Type is "(typing_extensions.SupportsIndex =) -> Untyped"
- parso/parser.py:208:24: note: Type is "def (nonterminal: Untyped, children: Untyped) -> None"
+ parso/parser.py:208:24: note: Type is "(nonterminal: Untyped, children: Untyped) -> None"
- parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:175:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:175:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:176:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:178:18: note: Type is "def (node: Untyped) -> contextlib._GeneratorContextManager[Never]"
+ parso/python/pep8.py:178:18: note: Type is "(node: Untyped) -> contextlib._GeneratorContextManager[Never]"
- parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "(self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
+ parso/python/pep8.py:181:6: error: Expression type contains "Any" (has type "def (self: PEP8Normalizer, node: Untyped) -> None")  [no-any-expr]
- parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "(self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
+ parso/python/pep8.py:181:6: error: Argument 1 to "contextmanager" has incompatible type "def (self: PEP8Normalizer, node: Untyped) -> None"; expected "(self: PEP8Normalizer, node: Untyped) -> Iterator[Never]"  [arg-type]
- parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("(self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
+ parso/python/pep8.py:182:5: error: Type of decorated function contains type "Any" ("def (self: PEP8Normalizer, node: Untyped) -> _GeneratorContextManager[Never]")  [no-any-decorated]
- parso/python/pep8.py:189:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:189:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:196:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:196:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:202:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:202:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:213:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:213:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:221:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:221:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:247:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:247:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:285:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:285:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:338:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:338:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:350:13: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:350:13: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:352:9: note: Type is "def (leaf: Untyped) -> None"
+ parso/python/pep8.py:352:9: note: Type is "(leaf: Untyped) -> None"
- parso/python/pep8.py:353:9: note: Type is "def (part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
+ parso/python/pep8.py:353:9: note: Type is "(part: Untyped, spacing: Untyped, leaf: Untyped) -> None"
- parso/python/pep8.py:371:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:371:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:393:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:393:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:397:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:397:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:400:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:400:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:402:13: note: Type is "def (spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
+ parso/python/pep8.py:402:13: note: Type is "(spacing: Untyped, leaf: Untyped, is_comment: bool =) -> None"
- parso/python/pep8.py:405:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:405:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:408:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:408:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:416:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:416:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:435:20: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:435:20: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:454:29: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:454:29: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:457:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:457:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:466:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:466:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:468:32: note: Type is "def (spacing: Untyped) -> None"
+ parso/python/pep8.py:468:32: note: Type is "(spacing: Untyped) -> None"
- parso/python/pep8.py:472:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:472:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:478:37: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:478:37: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:487:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:487:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:493:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:493:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:499:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:499:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:501:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:501:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:508:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:508:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:514:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:514:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:516:41: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:516:41: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:522:13: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:522:13: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:524:9: note: Type is "def (part: Untyped, spacing: Untyped) -> None"
+ parso/python/pep8.py:524:9: note: Type is "(part: Untyped, spacing: Untyped) -> None"
- parso/python/pep8.py:567:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:567:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:577:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:577:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:581:24: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:581:24: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:590:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:590:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:593:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:593:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:597:13: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:597:13: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:659:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:659:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:675:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:675:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:677:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:677:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:685:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:685:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:687:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:687:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:690:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:690:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:692:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:692:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:702:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:702:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:707:25: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:707:25: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:713:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:713:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:715:21: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:715:21: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/pep8.py:725:17: note: Type is "def (node: Untyped, code: Untyped, message: Untyped) -> None"
+ parso/python/pep8.py:725:17: note: Type is "(node: Untyped, code: Untyped, message: Untyped) -> None"
- parso/python/parser.py:77:22: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/parser.py:77:22: note: Type is "(tokens: Untyped) -> None"
- parso/python/parser.py:136:25: note: Type is "def (token: Untyped) -> None"
+ parso/python/parser.py:136:25: note: Type is "(token: Untyped) -> None"
- parso/python/parser.py:159:12: note: Type is "def (start_index: Untyped) -> None"
+ parso/python/parser.py:159:12: note: Type is "(start_index: Untyped) -> None"
- parso/python/parser.py:166:17: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/parser.py:166:17: note: Type is "(Any (unannotated)) -> None"
- parso/python/parser.py:199:21: note: Type is "def (typing_extensions.SupportsIndex =) -> Any (unannotated)"
+ parso/python/parser.py:199:21: note: Type is "(typing_extensions.SupportsIndex =) -> Any (unannotated)"
- parso/python/diff.py:305:17: note: Type is "def (line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
+ parso/python/diff.py:305:17: note: Type is "(line_offset: Untyped, start_line_old: Untyped, until_line_old: Untyped, until_line_new: Untyped) -> None"
- parso/python/diff.py:307:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:307:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:309:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:309:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:324:46: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:324:46: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:350:25: note: Type is "def (old_line: Untyped) -> None"
+ parso/python/diff.py:350:25: note: Type is "(old_line: Untyped) -> None"
- parso/python/diff.py:355:17: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:355:17: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:414:20: note: Type is "def (until_line: Untyped) -> None"
+ parso/python/diff.py:414:20: note: Type is "(until_line: Untyped) -> None"
- parso/python/diff.py:417:13: note: Type is "def (tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:417:13: note: Type is "(tree_nodes: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:444:18: note: Type is "def (lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
+ parso/python/diff.py:444:18: note: Type is "(lines: Untyped, until_line: Untyped, line_offset: int =) -> None"
- parso/python/diff.py:453:16: note: Type is "def (tokens: Untyped) -> None"
+ parso/python/diff.py:453:16: note: Type is "(tokens: Untyped) -> None"
- parso/python/diff.py:553:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:553:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:562:9: note: Type is "def (Any (unannotated)) -> None"
+ parso/python/diff.py:562:9: note: Type is "(Any (unannotated)) -> None"
- parso/python/diff.py:603:16: note: Type is "def (suffix: Untyped) -> None"
+ parso/python/diff.py:603:16: note: Type is "(suffix: Untyped) -> None"
- parso/python/diff.py:613:22: note: Type is "def (tree_nodes: Untyped) -> None"
+ parso/python/diff.py:613:22: note: Type is "(tree_nodes: Untyped) -> None"
- parso/python/diff.py:633:13: note: Type is "def (prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
+ parso/python/diff.py:633:13: note: Type is "(prefix: Untyped, children: Untyped, line_offset: int =, last_line_offset_leaf: Untyped =) -> None"
- parso/python/diff.py:635:13: note: Type is "def (child_node: Untyped) -> None"
+ parso/python/diff.py:635:13: note: Type is "(child_node: Untyped) -> None"
- parso/python/diff.py:638:13: note: Type is "def (tree_node: Untyped, keyword_token_indents: Untyped) -> None"
+ parso/python/diff.py:638:13: note: Type is "(tree_node: Untyped, keyword_token_indents: Untyped) -> None"
- parso/python/diff.py:704:9: note: Type is "def (indentation: Untyped) -> None"
+ parso/python/diff.py:704:9: note: Type is "(indentation: Untyped) -> None"
- parso/python/diff.py:706:70: note: Type is "def (working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
+ parso/python/diff.py:706:70: note: Type is "(working_stack: Untyped, nodes: Untyped, until_line: Untyped, line_offset: Untyped, prefix: str =, is_nested: bool =) -> None"
- parso/python/diff.py:726:22: note: Type is "def (tree_nodes: Untyped, is_new_suite: Untyped) -> None"
+ parso/python/diff.py:726:22: note: Type is "(tree_nodes: Untyped, is_new_suite: Untyped) -> None"
- parso/grammar.py:180:16: note: Type is "def (node: Untyped, normalizer_config: Untyped =) -> None"
+ parso/grammar.py:180:16: note: Type is "(node: Untyped, normalizer_config: Untyped =) -> None"
- parso/grammar.py:183:16: note: Type is "def (node: Untyped) -> None"
+ parso/grammar.py:183:16: note: Type is "(node: Untyped) -> None"
- parso/grammar.py:198:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:198:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:202:22: note: Type is "def (normalizer_config: Untyped) -> None"
+ parso/grammar.py:202:22: note: Type is "(normalizer_config: Untyped) -> None"
- parso/grammar.py:259:20: note: Type is "def (str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"
+ parso/grammar.py:259:20: note: Type is "(str, parso.grammar.Grammar[Untyped]) -> parso.grammar.Grammar[Untyped]"

attrs (https://github.com/python-attrs/attrs)
- tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:177:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:183:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[def (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> def (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
+ tests/typing_example.py:189:19: note: Type is "def [_T, _I: typing.Iterable[Untyped]] (member_validator: (Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any | typing.Sequence[(Any, attr.Attribute[_T@deep_iterable], _T@deep_iterable) -> Any], iterable_validator: (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any | None =) -> (Any, attr.Attribute[_I@deep_iterable], _I@deep_iterable) -> Any"
- tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:195:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: def (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: def (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> def (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
+ tests/typing_example.py:203:19: note: Type is "def [_K, _V, _M: typing.Mapping[Untyped, Untyped]] (key_validator: (Any, attr.Attribute[_K@deep_mapping], _K@deep_mapping) -> Any, value_validator: (Any, attr.Attribute[_V@deep_mapping], _V@deep_mapping) -> Any, mapping_validator: (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any | None =) -> (Any, attr.Attribute[_M@deep_mapping], _M@deep_mapping) -> Any"
- tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:298:20: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:302:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:303:34: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:303:56: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:306:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:306:35: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:311:26: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
+ tests/typing_example.py:315:38: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Never")  [no-any-expr]
- tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:317:21: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:317:44: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "(instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:321:13: error: Expression type contains "Any" (has type "def (instance: Any, attribute: Attribute[Any], new_value: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "[_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
+ tests/typing_example.py:321:36: error: Expression type contains "Any" (has type "def [_T] (instance: Any, attribute: Attribute[_T], new_value: _T) -> _T")  [no-any-expr]
- tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:338:27: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "(cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
+ tests/typing_example.py:343:33: error: Expression type contains "Any" (has type "def (cls: type, attribs: list[Attribute[Untyped]]) -> list[Attribute[Untyped]]")  [no-any-expr]
- tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:400:50: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]
- tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "(s: Any) -> Any")  [no-any-expr]
+ tests/typing_example.py:407:55: error: Expression type contains "Any" (has type "def (s: Any) -> Any")  [no-any-expr]

CPython (cases_generator) (https://github.com/python/cpython)
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:151:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:151:6: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ Tools/cases_generator/parsing.py: note: In member "definition" of class "Parser":
+ Tools/cases_generator/parsing.py:153:21: error: Too few arguments for "macro_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:155:22: error: Too few arguments for "family_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:157:22: error: Too few arguments for "pseudo_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:159:20: error: Too few arguments for "inst_def" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:163:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inst_def" of class "Parser":
+ Tools/cases_generator/parsing.py:165:19: error: Too few arguments for "inst_header" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:166:25: error: Too few arguments for "block" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:178:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "inputs" of class "Parser":
+ Tools/cases_generator/parsing.py:218:19: error: Too few arguments for "input" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:229:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "input" of class "Parser":
+ Tools/cases_generator/parsing.py:231:16: error: Too few arguments for "cache_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:231:39: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In member "outputs" of class "Parser":
+ Tools/cases_generator/parsing.py:236:20: error: Too few arguments for "output" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:246:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "output" of class "Parser":
+ Tools/cases_generator/parsing.py:248:16: error: Too few arguments for "stack_effect" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:250:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:264:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "stack_effect" of class "Parser":
+ Tools/cases_generator/parsing.py:277:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:285:33: error: Too few arguments for "expression" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:293:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:318:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:324:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: In member "uops" of class "Parser":
+ Tools/cases_generator/parsing.py:338:19: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:342:27: error: Too few arguments for "uop" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py: note: In class "Parser":
+ Tools/cases_generator/parsing.py:350:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:368:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:407:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py:444:6: error: This decorator returns a "Callable", not a "FunctionType". Decorate this decorator with "basedtyping.as_functiontype", or ignore it if it's intentional  [callable-functiontype]
+ Tools/cases_generator/parsing.py: note: At top level:
+ Tools/cases_generator/parsing.py:483:9: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parsing.py:483:9: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-call-arg for more info
+ Tools/cases_generator/parser.py: note: In function "parse_files":
+ Tools/cases_generator/parser.py:58:23: error: Too few arguments for "definition" of "Parser"  [call-arg]
+ Tools/cases_generator/parser.py: note: At top level:

git-revise (https://github.com/mystor/git-revise)
- gitrevise/odb.py:390:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:390:16: note: Type is "(int =) -> Untyped"
- gitrevise/odb.py:406:16: note: Type is "def (int =) -> Untyped"
+ gitrevise/odb.py:406:16: note: Type is "(int =) -> Untyped"

aioredis (https://github.com/aio-libs/aioredis)
- aioredis/utils.py:28:12: note: Type is "def (url: str, **kwargs: Untyped) -> None"
+ aioredis/utils.py:28:12: note: Type is "(url: str, **kwargs: Untyped) -> None"
- aioredis/connection.py:698:35: note: Type is "def (exception: Untyped) -> None"
+ aioredis/connection.py:698:35: note: Type is "(exception: Untyped) -> None"
- aioredis/connection.py:767:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:767:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:776:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:776:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:784:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:784:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:790:19: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:790:19: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:823:23: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:823:23: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:829:27: note: Type is "def (*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/connection.py:829:27: note: Type is "(*args: Untyped, **kwargs: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1171:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1171:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1172:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1172:29: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, (value: Untyped) -> bool | None)")  [no-any-expr]
+ aioredis/connection.py:1175:9: error: Expression type contains "Any" (has type "(str, def (value: Untyped) -> bool | None)")  [no-any-expr]
- aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "(value: Untyped) -> bool | None")  [no-any-expr]
+ aioredis/connection.py:1175:31: error: Expression type contains "Any" (has type "def (value: Untyped) -> bool | None")  [no-any-expr]
- aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("[_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
+ aioredis/connection.py:1261:5: error: Type of decorated function contains type "Any" ("def [_CP: ConnectionPool] (cls: type[_CP], url: str, **kwargs: Untyped) -> _CP")  [no-any-decorated]
- aioredis/connection.py:1559:17: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1559:17: note: Type is "(item: Untyped) -> None"
- aioredis/connection.py:1604:36: note: Type is "def () -> typing.Coroutine[Any, Any, Untyped]"
+ aioredis/connection.py:1604:36: note: Type is "() -> typing.Coroutine[Any, Any, Untyped]"
- aioredis/connection.py:1647:13: note: Type is "def (item: Untyped) -> None"
+ aioredis/connection.py:1647:13: note: Type is "(item: Untyped) -> None"
- aioredis/client.py:363:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:363:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:365:13: note: Type is "def ((Untyped, None)) -> None"
+ aioredis/client.py:365:13: note: Type is "((Untyped, None)) -> None"
- aioredis/client.py:374:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:374:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:535:9: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- aioredis/client.py:535:10: error: Expression type contains "Any" (has type "(x: Untyped) -> Untyped")  [no-any-expr]
+ aioredis/client.py:535:10: error: Expression type contains "Any" (has type "def (x: Untyped) -> Untyped")  [no-any-expr]
- aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:5: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:10: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:536:11: error: list comprehension has incompatible type list[(...) -> Untyped]; expected list[def (x: Untyped) -> Any]  [misc]
- aioredis/client.py:537:22: error: Expression type contains "Any" (has type "(fv: ((x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
+ aioredis/client.py:537:22: error: Expression type contains "Any" (has type "def (fv: (def (x: Untyped) -> Any, Any (unannotated))) -> Any")  [no-any-expr]
- aioredis/client.py:537:33: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:33: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:39: error: Expression type contains "Any" (has type "((x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
+ aioredis/client.py:537:39: error: Expression type contains "Any" (has type "(def (x: Untyped) -> Any, Any (unannotated))")  [no-any-expr]
- aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[((x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
+ aioredis/client.py:537:47: error: Expression type contains "Any" (has type "zip[(def (x: Untyped) -> Any, Any (unannotated))]")  [no-any-expr]
- aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[(x: Untyped) -> Any]")  [no-any-expr]
+ aioredis/client.py:537:51: error: Expression type contains "Any" (has type "list[def (x: Untyped) -> Any]")  [no-any-expr]
- aioredis/client.py:586:13: note: Type is "def (Any (unannotated)) -> None"
+ aioredis/client.py:586:13: note: Type is "(Any (unannotated)) -> None"
- aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:655:26: error: Expression type contains "Any" (has type "dict[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:656:11: error: Unpacked dict entry 0 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:661:11: error: Unpacked dict entry 1 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:669:11: error: Unpacked dict entry 2 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:670:11: error: Unpacked dict entry 3 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:673:13: error: Expression type contains "Any" (has type "(r: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:673:13: error: Expression type contains "Any" (has type "def (r: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:675:11: error: Unpacked dict entry 4 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:675:39: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:675:39: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:676:11: error: Unpacked dict entry 5 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:676:57: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:676:57: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:677:11: error: Unpacked dict entry 6 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:680:13: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:680:13: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:682:11: error: Unpacked dict entry 7 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:682:46: error: Expression type contains "Any" (has type "(r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
+ aioredis/client.py:682:46: error: Expression type contains "Any" (has type "def (r: Untyped) -> tuple[Any, ...] | None")  [no-any-expr]
- aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:683:11: error: Unpacked dict entry 8 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:684:45: error: Expression type contains "Any" (has type "(r: Untyped) -> set[Any]")  [no-any-expr]
+ aioredis/client.py:684:45: error: Expression type contains "Any" (has type "def (r: Untyped) -> set[Any]")  [no-any-expr]
- aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:686:11: error: Unpacked dict entry 9 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:688:13: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:688:13: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:690:11: error: Unpacked dict entry 10 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:691:34: error: Expression type contains "Any" (has type "(r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
+ aioredis/client.py:691:34: error: Expression type contains "Any" (has type "def (r: Untyped) -> (Any, Any, float) | None")  [no-any-expr]
- aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:693:11: error: Unpacked dict entry 11 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:693:49: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:693:49: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:694:11: error: Unpacked dict entry 12 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:694:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:694:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:695:11: error: Unpacked dict entry 13 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:695:51: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:695:51: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
+ aioredis/client.py:696:11: error: Unpacked dict entry 14 has incompatible type "None"; expected "SupportsKeysAndGetItem[str | str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]"  [dict-item]
- aioredis/client.py:696:54: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:696:54: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:697:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:697:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:697:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:700:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:700:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:700:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:701:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:701:21: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:701:21: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:702:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:702:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:702:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:703:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:703:20: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:703:20: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:704:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:704:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:704:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:705:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:705:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:705:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:706:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:706:22: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:706:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:710:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:710:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:710:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:711:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:711:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:711:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:712:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:712:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:712:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:713:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:713:27: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:713:27: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:714:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:714:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:714:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:715:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:715:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:715:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:716:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:716:42: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:716:42: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:717:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:717:36: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:717:36: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:718:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:718:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:718:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:719:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:719:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:719:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:720:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:720:27: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:720:27: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:721:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:721:25: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:721:25: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ aioredis/client.py:722:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- aioredis/client.py:722:28: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ aioredis/client.py:722:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:723:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:723:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:723:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:724:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:724:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:724:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:725:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:725:30: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:725:30: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:726:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:726:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:726:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:727:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:727:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:727:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:728:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:728:37: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:728:37: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:729:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:729:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:729:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:730:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:730:27: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:730:27: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:731:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:731:23: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:731:23: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:732:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:732:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:732:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:733:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:733:23: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:733:23: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:734:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:734:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:734:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[str])")  [no-any-expr]
+ aioredis/client.py:735:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[str])")  [no-any-expr]
- aioredis/client.py:735:20: error: Expression type contains "Any" (has type "(r: Untyped) -> list[str]")  [no-any-expr]
+ aioredis/client.py:735:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[str]")  [no-any-expr]
- aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
+ aioredis/client.py:736:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[(float, float) | None])")  [no-any-expr]
- aioredis/client.py:736:19: error: Expression type contains "Any" (has type "(r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
+ aioredis/client.py:736:19: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[(float, float) | None]")  [no-any-expr]
- aioredis/client.py:737:17: error: Expression type contains "Any" (has type "(ll: Any) -> (float, float) | None")  [no-any-expr]
+ aioredis/client.py:737:17: error: Expression type contains "Any" (has type "def (ll: Any) -> (float, float) | None")  [no-any-expr]
- aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:739:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:739:22: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:739:22: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:740:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:740:30: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:740:30: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
+ aioredis/client.py:741:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> dict[Any, Any])")  [no-any-expr]
- aioredis/client.py:741:20: error: Expression type contains "Any" (has type "(r: Untyped) -> dict[Any, Any]")  [no-any-expr]
+ aioredis/client.py:741:20: error: Expression type contains "Any" (has type "def (r: Untyped) -> dict[Any, Any]")  [no-any-expr]
- aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:742:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:742:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:742:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:743:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:743:17: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:743:17: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:744:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:744:21: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:744:21: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:745:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:745:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:745:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:746:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **kwargs: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:746:25: error: Expression type contains "Any" (has type "(response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:746:25: error: Expression type contains "Any" (has type "def (response: Untyped, **kwargs: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:747:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:747:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:747:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:748:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:748:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:748:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:749:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:749:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:749:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[None])")  [no-any-expr]
+ aioredis/client.py:750:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[None])")  [no-any-expr]
- aioredis/client.py:750:24: error: Expression type contains "Any" (has type "(r: Untyped) -> list[None]")  [no-any-expr]
+ aioredis/client.py:750:24: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[None]")  [no-any-expr]
- aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:751:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, infotype: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:751:19: error: Expression type contains "Any" (has type "(response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:751:19: error: Expression type contains "Any" (has type "def (response: Untyped, infotype: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> bool)")  [no-any-expr]
+ aioredis/client.py:752:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> bool)")  [no-any-expr]
- aioredis/client.py:752:17: error: Expression type contains "Any" (has type "(r: Untyped) -> bool")  [no-any-expr]
+ aioredis/client.py:752:17: error: Expression type contains "Any" (has type "def (r: Untyped) -> bool")  [no-any-expr]
- aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:753:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:753:26: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:753:26: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | None)")  [no-any-expr]
+ aioredis/client.py:754:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | None)")  [no-any-expr]
- aioredis/client.py:754:22: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | None")  [no-any-expr]
+ aioredis/client.py:754:22: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | None")  [no-any-expr]
- aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:755:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:755:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:755:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> list[bool])")  [no-any-expr]
+ aioredis/client.py:756:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> list[bool])")  [no-any-expr]
- aioredis/client.py:756:26: error: Expression type contains "Any" (has type "(r: Untyped) -> list[bool]")  [no-any-expr]
+ aioredis/client.py:756:26: error: Expression type contains "Any" (has type "def (r: Untyped) -> list[bool]")  [no-any-expr]
- aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:757:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:757:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:757:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:758:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:758:24: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:758:24: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:760:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:760:45: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:760:45: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:761:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:761:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:761:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:762:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:762:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:762:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:763:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:763:29: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:763:29: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:764:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:764:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:764:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:765:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:765:31: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:765:31: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:766:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:766:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:766:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:767:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:767:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:767:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, (r: Untyped) -> Any | bool)")  [no-any-expr]
+ aioredis/client.py:768:9: error: Expression type contains "Any" (has type "(str, def (r: Untyped) -> Any | bool)")  [no-any-expr]
- aioredis/client.py:768:16: error: Expression type contains "Any" (has type "(r: Untyped) -> Any | bool")  [no-any-expr]
+ aioredis/client.py:768:16: error: Expression type contains "Any" (has type "def (r: Untyped) -> Any | bool")  [no-any-expr]
- aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:769:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:769:24: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:769:24: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:771:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:771:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:771:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:772:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:772:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:772:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> (int, int))")  [no-any-expr]
+ aioredis/client.py:773:9: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> (int, int))")  [no-any-expr]
- aioredis/client.py:773:17: error: Expression type contains "Any" (has type "(x: Untyped) -> (int, int)")  [no-any-expr]
+ aioredis/client.py:773:17: error: Expression type contains "Any" (has type "def (x: Untyped) -> (int, int)")  [no-any-expr]
- aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:774:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:774:19: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:774:19: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:775:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:775:26: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:775:26: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:778:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:778:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:778:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:779:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:779:28: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:779:28: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:780:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:780:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:780:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, (response: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:781:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:781:25: error: Expression type contains "Any" (has type "(response: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:781:25: error: Expression type contains "Any" (has type "def (response: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:782:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:782:21: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:782:21: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:783:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:783:17: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:783:17: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
+ aioredis/client.py:784:9: error: Expression type contains "Any" (has type "(str, def (response: Untyped, **options: Untyped) -> None)")  [no-any-expr]
- aioredis/client.py:784:18: error: Expression type contains "Any" (has type "(response: Untyped, **options: Untyped) -> None")  [no-any-expr]
+ aioredis/client.py:784:18: error: Expression type contains "Any" (has type "def (response: Untyped, **options: Untyped) -> None")  [no-any-expr]
- aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("(cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
+ aioredis/client.py:790:5: error: Type of decorated function contains type "Any" ("def (cls: type[Redis], url: str, **kwargs: Untyped) -> None")  [no-any-decorated]
- aioredis/client.py:830:27: note: Type is "def (url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
+ aioredis/client.py:830:27: note: Type is "(url: str, **kwargs: Untyped) -> aioredis.connection.ConnectionPool"
- aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, (r: Untyped) -> list[str] | type[int] | (x: Untyped) -> int | (r: Untyped) -> list[(float, float) | None] | (r: Untyped) -> dict[Any, Any] | (r: Untyped) -> list[None] | (response: Untyped, infotype: Untyped) -> None | (r: Untyped) -> Any | None | (response: Untyped, **options: Untyped) -> None | (r: Untyped) -> list[bool] | (r: Untyped) -> Any | bool | (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
+ aioredis/client.py:921:55: error: Expression type contains "Any" (has type "dict[str, def (r: Untyped) -> list[str] | type[int] | def (x: Untyped) -> int | def (r: Untyped) -> list[(float, float) | None] | def (r: Untyped) -> dict[Any, Any] | def (r: Untyped) -> list[None] | def (response: Untyped, infotype: Untyped) -> None | def (r: Untyped) -> Any | None | def (response: Untyped, **options: Untyped) -> None | def (r: Untyped) -> list[bool] | def (r: Untyped) -> Any | bool | def (x: Untyped) -> (int, int) | type[bool]]")  [no-any-expr]
- aioredis/client.py:931:37: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:931:37: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1101:41: note: Type is "def (command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1101:41: note: Type is "(command_name: Untyped, *keys: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1104:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1104:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1110:26: note: Type is "def (connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1110:26: note: Type is "(connection: aioredis.connection.Connection, command_name: str | bytes, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1144:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1144:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1148:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1148:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1152:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1152:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1160:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1160:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1164:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1164:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1178:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1178:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1186:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1186:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1195:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1195:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1204:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1204:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1368:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1368:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1372:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1372:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1376:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1376:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1380:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1380:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1387:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1387:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1391:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1391:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1432:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1432:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1446:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1446:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1447:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1447:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1451:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1451:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1455:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1455:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1459:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1459:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1471:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1471:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1480:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1480:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1484:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1484:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1488:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1488:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1492:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1492:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1496:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1496:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1500:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1500:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1504:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1504:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1508:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1508:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1512:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1512:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1516:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1516:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1528:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1528:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1540:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1540:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1544:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1544:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1557:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1557:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1559:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1559:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1566:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1566:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1609:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1609:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1615:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1615:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1619:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1619:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1633:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1633:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1637:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1637:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1641:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1641:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1648:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1648:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1652:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1652:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1656:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1656:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1660:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1660:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1664:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1664:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1668:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1668:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1672:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1672:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1676:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1676:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1680:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1680:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1697:13: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1697:13: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1712:20: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1712:20: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1713:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1713:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1726:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1726:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
- aioredis/client.py:1730:16: note: Type is "def (*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"
+ aioredis/client.py:1730:16: note: Type is "(*args: Untyped, **options: Untyped) -> typing.Coroutine[Any, Any, None]"

... (truncated 422 lines) ...

pyjwt (https://github.com/jpadilla/pyjwt)
- jwt/algorithms.py:167:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, key: Any) -> Any")  [no-any-decorated]
+ jwt/algorithms.py:167:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, key: Any) -> Any")  [no-any-decorated]
- jwt/algorithms.py:174:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, msg: bytes, key: Any) -> bytes")  [no-any-decorated]
+ jwt/algorithms.py:174:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, msg: bytes, key: Any) -> bytes")  [no-any-decorated]
- jwt/algorithms.py:181:5: error: Type of decorated function contains type "Any" ("(self: Algorithm, msg: bytes, key: Any, sig: bytes) -> bool")  [no-any-decorated]
+ jwt/algorithms.py:181:5: error: Type of decorated function contains type "Any" ("def (self: Algorithm, msg: bytes, key: Any, sig: bytes) -> bool")  [no-any-decorated]
+ jwt/algorithms.py: note: In class "HMACAlgorithm":
+ jwt/algorithms.py:248:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
+ jwt/algorithms.py:248:37: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-callable-functiontype for more info
+ jwt/algorithms.py:249:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
+ jwt/algorithms.py:250:37: error: Assigning a "FunctionType" on the class will become a "MethodType"  [callable-functiontype]
- jwt/api_jws.py:186:46: note: Type is "def () -> _collections_abc.dict_keys[str, Untyped]"
+ jwt/api_jws.py:186:46: note: Type is "() -> _collections_abc.dict_keys[str, Untyped]"
- jwt/api_jws.py:231:46: note: Type is "def () -> _collections_abc.dict_keys[str, Untyped]"
+ jwt/api_jws.py:231:46: note: Type is "() -> _collections_abc.dict_keys[str, Untyped]"
- jwt/api_jws.py:234:19: note: Type is "def (jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | jwt.api_jwk.PyJWK | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
+ jwt/api_jws.py:234:19: note: Type is "(jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | jwt.api_jwk.PyJWK | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
- jwt/api_jwt.py:152:19: note: Type is "def (jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | jwt.api_jwk.PyJWK | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
+ jwt/api_jwt.py:152:19: note: Type is "(jwt: str | bytes, key: cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey | cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey | cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey | cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey | jwt.api_jwk.PyJWK | str | bytes =, algorithms: list[str] | None =, options: dict[str, Any] | None =, detached_payload: bytes | None =, **kwargs: Untyped) -> dict[str, Any]"
- jwt/api_jwt.py:163:9: note: Type is "def (payload: dict[str, Any], options: dict[str, Any], audience: Untyped =, issuer: Untyped =, leeway: float | datetime.timedelta =) -> None"
+ jwt/api_jwt.py:163:9: note: Type is "(payload: dict[str, Any], options: dict[str, Any], audience: Untyped =, issuer: Untyped =, leeway: float | datetime.timedelta =) -> None"

pycryptodome (https://github.com/Legrandin/pycryptodome)
- lib/Crypto/SelfTest/loader.py:88:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/loader.py:88:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:113:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:114:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:124:9: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "def (x: typing.Sequence[Untyped]) -> None"
+ lib/Crypto/SelfTest/Random/test_random.py:128:13: note: Type is "(x: typing.Sequence[Untyped]) -> None"
- lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:139:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:140:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:145:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:147:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:149:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:151:13: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:154:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "def (population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
+ lib/Crypto/SelfTest/Random/test_random.py:156:21: note: Type is "(population: typing.Sequence[Untyped], k: int) -> list[Untyped]"
- lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:9: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "((data: Untyped) -> None, (data: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:23: error: Expression type contains "Any" (has type "(def (data: Untyped) -> None, def (data: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "(data: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Hash/common.py:167:34: error: Expression type contains "Any" (has type "def (data: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:89:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:90:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "(N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:91:39: error: Expression type contains "Any" (has type "def (N: int, randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:95:17: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:100:13: note: Type is "def (N: int, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:107:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "(N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Util/test_number.py:108:39: error: Expression type contains "Any" (has type "def (N: int, e: int | None=..., false_positive_prob: float | None=..., randfunc: (...) -> Untyped | None=...) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:110:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:115:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> int"
+ lib/Crypto/SelfTest/Util/test_number.py:121:13: note: Type is "def (N: int, e: int | None =, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> int"
- lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:129:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:130:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:131:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:132:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:133:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:134:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:135:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:136:26: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> bool"
+ lib/Crypto/SelfTest/Util/test_number.py:144:30: note: Type is "def (N: int, false_positive_prob: float | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> bool"
- lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:46: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:120:56: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:45: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:121:55: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:149:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:151:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:172:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:177:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:201:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:308:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:309:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:310:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:311:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pss.py:312:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:317:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:318:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:319:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:320:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:321:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:322:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:323:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:324:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:325:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:348:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pss.py:352:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:73:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:74:40: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:35: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:75:45: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:97:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:99:74: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., verifier: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:120:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:125:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "(self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:145:59: error: Expression type contains "Any" (has type "def (self: Untyped, hash_obj: Untyped=..., signer: Untyped=..., result: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:233:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:234:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:235:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:236:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:237:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:238:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:239:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:240:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:241:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:242:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:243:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:244:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:245:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:246:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:247:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:248:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:249:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:250:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:251:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:252:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:253:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:254:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:296:69: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:297:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:298:66: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:322:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:326:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:64: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:68: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:528:74: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:533:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:534:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:559:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_eddsa.py:560:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:94:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:97:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:107:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:115:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:118:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:125:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:140:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:162:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:183:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:192:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:194:70: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:220:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:224:55: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:237:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:240:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:250:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:256:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:262:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:265:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:281:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "(key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:284:39: error: Expression type contains "Any" (has type "def (key: DsaKey | EccKey, mode: str, encoding: str | None=..., randfunc: (...) -> Untyped | None=...) -> DeterministicDsaSigScheme | FipsDsaSigScheme | FipsEcDsaSigScheme")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:291:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:310:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:311:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:312:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> Any)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> Any)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:317:52: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:318:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:319:48: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:343:16: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:352:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "(self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:354:72: error: Expression type contains "Any" (has type "def (self: Untyped, verifier: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:42: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:360:47: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:374:14: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "(self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:378:57: error: Expression type contains "Any" (has type "def (self: Untyped, signer: Untyped=..., hash_obj: Untyped=..., signature: Untyped=...) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "def (tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:629:13: note: Type is "(tuple[Untyped, Untyped, Untyped, Untyped, Untyped, fallback=Crypto.SelfTest.Signature.test_dss.Det_DSA_Tests.TestSig@619]) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:638:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:654:22: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1076:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1079:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1084:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1087:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1092:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1095:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1100:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1103:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1108:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1111:20: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1115:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1122:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1129:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1136:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1143:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1204:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1205:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1206:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1221:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1230:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1234:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1274:65: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1275:73: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, (group: Untyped) -> None)")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:58: error: Expression type contains "Any" (has type "(str, def (group: Untyped) -> None)")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "(group: Untyped) -> None")  [no-any-expr]
+ lib/Crypto/SelfTest/Signature/test_dss.py:1276:70: error: Expression type contains "Any" (has type "def (group: Untyped) -> None")  [no-any-expr]
- lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1282:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1283:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1285:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1286:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1287:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1288:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1289:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1290:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1291:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1292:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1293:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1294:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1295:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1296:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1297:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1299:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1300:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1301:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1302:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1303:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1304:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1306:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1307:13: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1308:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1309:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "def (filename: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1310:9: note: Type is "(filename: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: def (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1328:18: note: Type is "def (key: Crypto.PublicKey.DSA.DsaKey | Crypto.PublicKey.ECC.EccKey, mode: str, encoding: str | None =, randfunc: (*Untyped, **Untyped) -> Untyped | None =) -> Crypto.Signature.DSS.DeterministicDsaSigScheme | Crypto.Signature.DSS.FipsDsaSigScheme | Crypto.Signature.DSS.FipsEcDsaSigScheme"
- lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1339:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "def (tv: Untyped) -> None"
+ lib/Crypto/SelfTest/Signature/test_dss.py:1343:13: note: Type is "(tv: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:107:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:108:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:110:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:111:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:116:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:117:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:119:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:120:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:124:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:125:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:127:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:128:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:134:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:135:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:140:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:141:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:146:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:147:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:152:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:153:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:154:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:159:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:160:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "def (rsaObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:161:9: note: Type is "(rsaObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "(obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_RSA.py:209:42: error: Expression type contains "Any" (has type "def (obj: Any, protocol: int | None=..., *, fix_imports: bool = ..., buffer_callback: (PickleBuffer) -> Any | None = ...) -> bytes")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "def (bits: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:97:9: note: Type is "(bits: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:101:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:109:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:116:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:124:17: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:134:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "def (tv: Untyped, as_longs: int =) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:147:27: note: Type is "(tv: Untyped, as_longs: int =) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "def (Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:163:13: note: Type is "(Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:168:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:169:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:171:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "def (elgObj: Untyped) -> None"
+ lib/Crypto/SelfTest/PublicKey/test_ElGamal.py:172:9: note: Type is "(elgObj: Untyped) -> None"
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, (k: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:22: error: Expression type contains "Any" (has type "(str, def (k: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "(k: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:767:27: error: Expression type contains "Any" (has type "def (k: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, (x: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:22: error: Expression type contains "Any" (has type "(str, def (x: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "(x: Untyped) -> int")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:768:27: error: Expression type contains "Any" (has type "def (x: Untyped) -> int")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, (y: Untyped) -> int)")  [no-any-expr]
+ lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:22: error: Expression type contains "Any" (has type "(str, def (y: Untyped) -> int)")  [no-any-expr]
- lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:769:27: error: Expression type contains "Any" (has type "(y: Untyped) -> int")  [no-any-expr]

... (truncated 877 lines) ...

boostedblob (https://github.com/hauntsaninja/boostedblob)
- boostedblob/azure_auth.py:145:28: error: Expression type contains "Any" (has type "(x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/azure_auth.py:145:28: error: Expression type contains "Any" (has type "def (x: Untyped) -> Any")  [no-any-expr]
+ boostedblob/globals.py:69:52: error: "(T@TokenManager) -> Awaitable[(Any, float)]" has no attribute "__qualname__"  [attr-defined]
- boostedblob/globals.py:142:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:142:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:145:46: error: Expression type contains "Any" (has type "(cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:145:46: error: Expression type contains "Any" (has type "def (cache_key: (str, str | None)) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:148:46: error: Expression type contains "Any" (has type "(_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
+ boostedblob/globals.py:148:46: error: Expression type contains "Any" (has type "def (_: str) -> Coroutine[Any, Any, (Any, float)]")  [no-any-expr]
- boostedblob/globals.py:203:2: error: Expression type contains "Any" (has type "(**kwargs: Any) -> Iterator[None]")  [no-any-expr]
+ boostedblob/globals.py:203:2: error: Expression type contains "Any" (has type "def (**kwargs: Any) -> Iterator[None]")  [no-any-expr]
- boostedblob/globals.py:204:1: error: Type of decorated function contains type "Any" ("(**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
+ boostedblob/globals.py:204:1: error: Type of decorated function contains type "Any" ("def (**kwargs: Any) -> _GeneratorContextManager[None]")  [no-any-decorated]
- boostedblob/globals.py:247:6: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:247:6: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:248:5: error: Type of decorated function contains type "Any" ("(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
+ boostedblob/globals.py:248:5: error: Type of decorated function contains type "Any" ("def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-decorated]
- boostedblob/globals.py:252:12: error: Expression type contains "Any" (has type "(*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
+ boostedblob/globals.py:252:12: error: Expression type contains "Any" (has type "def (*args: Any, **kwargs: Any) -> Coroutine[Any, Any, Any]")  [no-any-expr]
- boostedblob/globals.py:268:32: error: Expression type contains "Any" (has type "(loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
+ boostedblob/globals.py:268:32: error: Expression type contains "Any" (has type "def (loop: AbstractEventLoop, context: dict[str, Any]) -> None")  [no-any-expr]
- boostedblob/request.py:84: error: Type of decorated function contains type "Any" ("(*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: dict[str, Any] | bytes | None = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ..., auth: (Request) -> Awaitable[RawRequest] | None = ...) -> None")  [no-any-decorated]
+ boostedblob/request.py:84: error: Type of decorated function contains type "Any" ("def (*, method: str = ..., url: str = ..., params: Mapping[str, str] = ..., data: dict[str, Any] | bytes | None = ..., headers: Mapping[str, str] = ..., success_codes: Sequence[int] = ..., retry_codes: Sequence[int] = ..., failure_exceptions: Mapping[int, Exception] = ..., auth: (Request) -> Awaitable[RawRequest] | None = ...) -> None")  [no-any-decorated]
- boostedblob/path.py:384:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:384:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:428:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:428:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:439:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:439:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:535:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:535:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/path.py:559:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/path.py:559:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/share.py:9:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/share.py:9:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:33:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:33:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:93:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:93:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:119:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:119:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:174:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/read.py:174:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/read.py:174:2: error: Expression type contains "Any" (has type "(path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-expr]
+ boostedblob/read.py:174:2: error: Expression type contains "Any" (has type "def (path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-expr]
- boostedblob/read.py:175:1: error: Type of decorated function contains type "Any" ("(path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-decorated]
+ boostedblob/read.py:175:1: error: Type of decorated function contains type "Any" ("def (path: CloudPath | str, executor: BoostExecutor, size: int | None=...) -> Coroutine[Any, Any, UnorderedMappingBoostable[Any, (bytes, (int, int))]]")  [no-any-decorated]
- boostedblob/listing.py:59:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:59:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:145:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:145:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:196:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:196:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:225:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:225:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:279:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:279:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/listing.py:308:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/listing.py:308:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/delete.py:26:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/delete.py:26:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/delete.py:142:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/delete.py:142:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:40:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:40:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:114:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:114:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/write.py:257:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/write.py:257:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/copying.py:42:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/copying.py:42:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/copying.py:148:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/copying.py:148:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/copying.py:391:2: error: Expression type contains "Any" (has type "[F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
+ boostedblob/copying.py:391:2: error: Expression type contains "Any" (has type "def [F: (...) -> Any] (fn: F) -> F")  [no-any-expr]
- boostedblob/_recover.py:135:27: error: Expression type contains "Any" (has type "(b: dict[str, Any]) -> Any")  [no-any-expr]
+ boostedblob/_recover.py:135:27: error: Expression type contains "Any" (has type "def (b: dict[str, Any]) -> Any")  [no-any-expr]
- boostedblob/_recover.py:169:28: error: Expression type contains "Any" (has type "(b: dict[str, Any]) -> Any")  [no-any-expr]
+ boostedblob/_recover.py:169:28: error: Expression type contains "Any" (has type "def (b: dict[str, Any]) -> Any")  [no-any-expr]
- boostedblob/_recover.py:235:9: error: Expression type contains "Any" (has type "(p_vs: (AzurePath, list[dict[str, Any]])) -> Coroutine[Any, Any, str]")  [no-any-expr]```</details>

... (truncated 30741 lines) ...

github-actions[bot] avatar May 31 '24 11:05 github-actions[bot]